isapi_module.pas
来自「Delphi快速开发Web Server」· PAS 代码 · 共 40 行
PAS
40 行
unit Isapi_Module;
interface
uses
SysUtils, Classes,
Forms, // D4
rtcInfo, rtcConn, rtcDataSrv,
rtcISAPISrv,
rtcLog,
AppServer_Module;
type
TMyISAPI_Module = class(TDataModule)
Server: TRtcISAPIServer;
procedure ServerListenStart(Sender: TRtcConnection);
private
{ Private declarations }
public
{ Public declarations }
end;
var
MyISAPI_Module: TMyISAPI_Module;
implementation
{$R *.dfm}
procedure TMyISAPI_Module.ServerListenStart(Sender: TRtcConnection);
begin
AppSrv_Module.ServerLink.Server:=Server;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?