THTTPHost

From Ultibo.org
Jump to: navigation, search

Return to Unit HTTP


Description


To be documented

Class definitions



[Expand]

THTTPHost = class(TListObject)


Function declarations



[Expand]
constructor THTTPHost.Create;
Description: To be documented


[Expand]
destructor THTTPHost.Destroy; 
Description: To be documented


[Expand]
function THTTPHost.GetName:String;
Description: To be documented


[Expand]
procedure THTTPHost.SetName(const AName:String);
Description: To be documented


[Expand]
procedure THTTPHost.SetFlags(AFlags:LongWord);
Description: To be documented


[Expand]
function THTTPHost.GetDefaultMimeType:String;
Description: To be documented


[Expand]
procedure THTTPHost.SetDefaultMimeType(const ADefaultMimeType:String);
Description: To be documented


[Expand]
function THTTPHost.GetIsDefault:Boolean;
Description: To be documented


[Expand]
procedure THTTPHost.SetIsDefault(AIsDefault:Boolean);
Description: To be documented


[Expand]
function THTTPHost.GetIsDomain:Boolean;
Description: To be documented


[Expand]
procedure THTTPHost.SetIsDomain(AIsDomain:Boolean);
Description: To be documented


[Expand]
function THTTPHost.AcquireLock:Boolean;
Description: To be documented


[Expand]
function THTTPHost.ReleaseLock:Boolean;
Description: To be documented


[Expand]
function THTTPHost.MatchError(AStatus:LongWord):THTTPError;
Description: To be documented


[Expand]
function THTTPHost.MatchDocument(const AName:String; var AAlias:THTTPAlias):THTTPDocument;
Description: To be documented


[Expand]
function THTTPHost.DoGet(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base GET Method for an HTTP Host


[Expand]
function THTTPHost.DoHead(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base HEAD Method for an HTTP Host


[Expand]
function THTTPHost.DoPost(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base POST Method for an HTTP Host


[Expand]
function THTTPHost.DoPut(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base PUT Method for an HTTP Host


[Expand]
function THTTPHost.DoError(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base Error Method for an HTTP Host


[Expand]
function THTTPHost.DoRequest(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base Request Method for an HTTP Host


[Expand]
function THTTPHost.DoResponse(ARequest:THTTPServerRequest; AResponse:THTTPServerResponse):Boolean;
Description: Base Response Method for an HTTP Host


[Expand]
function THTTPHost.FindError(AStatus:LongWord):THTTPError;
Description: To be documented


[Expand]
function THTTPHost.RegisterError(AError:THTTPError):Boolean;
Description: To be documented


[Expand]
function THTTPHost.DeregisterError(AError:THTTPError):Boolean;
Description: To be documented


[Expand]
function THTTPHost.FindAlias(const AName:String):THTTPAlias;
Description: To be documented


[Expand]
function THTTPHost.MatchAlias(const AName:String):THTTPAlias;
Description: To be documented


[Expand]
function THTTPHost.RegisterAlias(AAlias:THTTPAlias):Boolean;
Description: To be documented


[Expand]
function THTTPHost.DeregisterAlias(AAlias:THTTPAlias):Boolean;
Description: To be documented


[Expand]
function THTTPHost.GetModule(APrevious:THTTPModule):THTTPModule;
Description: To be documented


[Expand]
function THTTPHost.FindModule(AModule:THTTPModule):THTTPModule;
Description: To be documented


[Expand]
function THTTPHost.RegisterModule(AModule:THTTPModule):Boolean;
Description: To be documented


[Expand]
function THTTPHost.DeregisterModule(AModule:THTTPModule):Boolean;
Description: To be documented


[Expand]
function THTTPHost.FindDocument(const AName:String):THTTPDocument;
Description: To be documented


[Expand]
function THTTPHost.RegisterDocument(ADocument:THTTPDocument):Boolean;
Description: To be documented


[Expand]
function THTTPHost.DeregisterDocument(ADocument:THTTPDocument):Boolean;
Description: To be documented


[Expand]
function THTTPHost.LoadMimeTypes:Boolean;
Description: To be documented


[Expand]
function THTTPHost.FindMimeType(const AExtension:String):THTTPMimeType;
Description: To be documented


[Expand]
function THTTPHost.ResolveMimeType(const AExtension:String):String;
Description: To be documented


[Expand]
function THTTPHost.RegisterMimeType(AMimeType:THTTPMimeType):Boolean;
Description: To be documented


[Expand]
function THTTPHost.DeregisterMimeType(AMimeType:THTTPMimeType):Boolean;
Description: To be documented


Return to Unit Reference