THTTPListener
From Ultibo.org
Return to Unit HTTP
Description
To be documented
Class definitions
[Expand]
THTTPListener = class(TWinsock2TCPListener)
Function declarations
[Expand]
procedure THTTPListener.DoConnect(AThread:TWinsock2TCPServerThread);
Description: To be documented
[Expand]
procedure THTTPListener.DoDisconnect(AThread:TWinsock2TCPServerThread);
Description: To be documented
[Expand]
function THTTPListener.DoExecute(AThread:TWinsock2TCPServerThread):Boolean;
Description: To be documented
[Expand]
function THTTPListener.MatchHost(const AName:String; var AAlias:THTTPAlias):THTTPHost;
Description: To be documented
[Expand]
function THTTPListener.GetRequestLine(AThread:TWinsock2TCPServerThread; ARequest:THTTPServerRequest):Boolean;
Description: To be documented
[Expand]
function THTTPListener.GetRequestHeaders(AThread:TWinsock2TCPServerThread; ARequest:THTTPServerRequest):Boolean;
Description: To be documented
[Expand]
function THTTPListener.GetRequestContentStream(AThread:TWinsock2TCPServerThread; ARequest:THTTPServerRequest; AContent:TStream; ASize:LongWord):Boolean;
Description: If Size is 0 then read the entire content to the stream
[Expand]
function THTTPListener.GetRequestContentString(AThread:TWinsock2TCPServerThread; ARequest:THTTPServerRequest; var AContent:String; ASize:LongWord):Boolean;
Description: If Size is 0 then read the entire content to the string
[Expand]
function THTTPListener.SendResponseLine(AThread:TWinsock2TCPServerThread; AResponse:THTTPServerResponse):Boolean;
Description: To be documented
[Expand]
function THTTPListener.SendResponseHeaders(AThread:TWinsock2TCPServerThread; AResponse:THTTPServerResponse):Boolean;
Description: To be documented
[Expand]
function THTTPListener.SendResponseContentStream(AThread:TWinsock2TCPServerThread; AResponse:THTTPServerResponse; AContent:TStream; ASize:LongWord):Boolean;
Description: To be documented
[Expand]
function THTTPListener.SendResponseContentString(AThread:TWinsock2TCPServerThread; AResponse:THTTPServerResponse; const AContent:String; ASize:LongWord):Boolean;
Description: To be documented
[Expand]
function THTTPListener.FindHost(const AName:String):THTTPHost;
Description: To be documented
[Expand]
function THTTPListener.RegisterHost(AHost:THTTPHost):Boolean;
Description: To be documented
[Expand]
function THTTPListener.DeregisterHost(AHost:THTTPHost):Boolean;
Description: To be documented
[Expand]
function THTTPListener.FindError(const AHost:String; AStatus:LongWord):THTTPError;
Description: To be documented
[Expand]
function THTTPListener.RegisterError(const AHost:String; AError:THTTPError):Boolean;
Description: To be documented
[Expand]
function THTTPListener.DeregisterError(const AHost:String; AError:THTTPError):Boolean;
Description: To be documented
[Expand]
function THTTPListener.GetModule(const AHost:String; APrevious:THTTPModule):THTTPModule;
Description: To be documented
[Expand]
function THTTPListener.FindModule(const AHost:String; AModule:THTTPModule):THTTPModule;
Description: To be documented
[Expand]
function THTTPListener.RegisterModule(const AHost:String; AModule:THTTPModule):Boolean;
Description: To be documented
[Expand]
function THTTPListener.DeregisterModule(const AHost:String; AModule:THTTPModule):Boolean;
Description: To be documented
[Expand]
function THTTPListener.FindDocument(const AHost,AName:String):THTTPDocument;
Description: To be documented
[Expand]
function THTTPListener.RegisterDocument(const AHost:String; ADocument:THTTPDocument):Boolean;
Description: To be documented
[Expand]
function THTTPListener.DeregisterDocument(const AHost:String; ADocument:THTTPDocument):Boolean;
Description: To be documented
[Expand]
function THTTPListener.LoadMimeTypes(const AHost:String):Boolean;
Description: To be documented
[Expand]
function THTTPListener.FindMimeType(const AHost,AExtension:String):THTTPMimeType;
Description: To be documented
[Expand]
function THTTPListener.ResolveMimeType(const AHost,AExtension:String):String;
Description: To be documented
[Expand]
function THTTPListener.RegisterMimeType(const AHost:String; AMimeType:THTTPMimeType):Boolean;
Description: To be documented
[Expand]
function THTTPListener.DeregisterMimeType(const AHost:String; AMimeType:THTTPMimeType):Boolean;
Description: To be documented
Return to Unit Reference