THTTPClient

From Ultibo.org
Jump to: navigation, search

Return to Unit HTTP


Description


To be documented

Class definitions



[Expand]

THTTPClient = class(TWinsock2TCPClient)


Function declarations



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


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


[Expand]
procedure THTTPClient.SetTimeout(ATimeout:LongWord);
Description: To be documented


[Expand]
function THTTPClient.GetUserAgent:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetUserAgent(const AUserAgent:String);
Description: To be documented


[Expand]
procedure THTTPClient.SetAllowRedirect(AAllowRedirect:Boolean);
Description: To be documented


[Expand]
procedure THTTPClient.SetMaxRedirects(AMaxRedirects:LongWord);
Description: To be documented


[Expand]
procedure THTTPClient.SetKeepAlive(AKeepAlive:Boolean);
Description: To be documented


[Expand]
procedure THTTPClient.SetKeepAliveTimeout(AKeepAliveTimeout:LongWord);
Description: To be documented


[Expand]
function THTTPClient.GetHost:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetHost(const AHost:String);
Description: To be documented


[Expand]
function THTTPClient.GetPort:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetPort(const APort:String);
Description: To be documented


[Expand]
function THTTPClient.GetUsername:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetUsername(const AUsername:String);
Description: To be documented


[Expand]
function THTTPClient.GetPassword:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetPassword(const APassword:String);
Description: To be documented


[Expand]
function THTTPClient.GetProxyHost:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetProxyHost(const AProxyHost:String);
Description: To be documented


[Expand]
function THTTPClient.GetProxyPort:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetProxyPort(const AProxyPort:String);
Description: To be documented


[Expand]
function THTTPClient.GetProxyUsername:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetProxyUsername(const AProxyUsername:String);
Description: To be documented


[Expand]
function THTTPClient.GetProxyPassword:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetProxyPassword(const AProxyPassword:String);
Description: To be documented


[Expand]
function THTTPClient.GetURL:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetURL(const AURL:String);
Description: To be documented


[Expand]
procedure THTTPClient.SetMethod(AMethod:LongWord);
Description: To be documented


[Expand]
procedure THTTPClient.SetVersion(AVersion:LongWord);
Description: To be documented


[Expand]
function THTTPClient.GetMimeType:String;
Description: To be documented


[Expand]
procedure THTTPClient.SetMimeType(const AMimeType:String);
Description: To be documented


[Expand]
procedure THTTPClient.SetRangeStart(ARangeStart:LongWord);
Description: To be documented


[Expand]
procedure THTTPClient.SetRangeEnd(ARangeEnd:LongWord);
Description: To be documented


[Expand]
procedure THTTPClient.SetEncoding(AEncoding:LongWord);
Description: To be documented


[Expand]
function THTTPClient.GetResponseStatus:LongWord;
Description: To be documented


[Expand]
function THTTPClient.GetResponseReason:String;
Description: To be documented


[Expand]
function THTTPClient.GetResponseVersion:LongWord;
Description: To be documented


[Expand]
function THTTPClient.GetResponseMimeType:String;
Description: To be documented


[Expand]
function THTTPClient.GetResponseEncoding:LongWord;
Description: To be documented


[Expand]
function THTTPClient.GetResponseContentSize:LongWord;
Description: To be documented


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


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


[Expand]
function THTTPClient.DoRedirect(const AURL:String; var ALocation:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.DoPassword(var AUsername,APassword:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.ReadResponseLine(AResponse:THTTPClientResponse):Boolean;
Description: To be documented


[Expand]
function THTTPClient.ReadResponseHeaders(AResponse:THTTPClientResponse):Boolean;
Description: To be documented


[Expand]
function THTTPClient.ReadResponseContentStream(AResponse:THTTPClientResponse; AContent:TStream; ASize:LongWord):Boolean;
Description: If Size is 0 then read the entire content to the stream


[Expand]
function THTTPClient.ReadResponseContentString(AResponse:THTTPClientResponse; var AContent:String; ASize:LongWord):Boolean;
Description: If Size is 0 then read the entire content to the string


[Expand]
function THTTPClient.WriteRequestLine(ARequest:THTTPClientRequest):Boolean;
Description: To be documented


[Expand]
function THTTPClient.WriteRequestHeaders(ARequest:THTTPClientRequest):Boolean;
Description: To be documented


[Expand]
function THTTPClient.WriteRequestContentStream(ARequest:THTTPClientRequest; AContent:TStream; ASize:LongWord):Boolean;
Description: To be documented


[Expand]
function THTTPClient.WriteRequestContentString(ARequest:THTTPClientRequest; const AContent:String; ASize:LongWord):Boolean;
Description: To be documented


[Expand]
function THTTPClient.Head(const AURL:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.GetString(const AURL:String; var AContent:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.GetStream(const AURL:String; AContent:TStream):Boolean;
Description: To be documented


[Expand]
function THTTPClient.PostString(const AURL:String; var AContent:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.PostStream(const AURL:String; AContent:TStream):Boolean;
Description: To be documented


[Expand]
function THTTPClient.SendRequest:Boolean;
Description: To be documented


[Expand]
function THTTPClient.CloseRequest(Close:Boolean):Boolean;
Description: To be documented


[Expand]
function THTTPClient.ClearRequest:Boolean;
Description: To be documented


[Expand]
function THTTPClient.CancelRequest:Boolean;
Description: To be documented


[Expand]
function THTTPClient.SetRequestParam(const AName,AValue:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.SetRequestParamEx(const AName,AValue:String; AReplace:Boolean):Boolean;
Description: To be documented


[Expand]
function THTTPClient.SetRequestHeader(const AName,AValue:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.SetRequestHeaderEx(const AName,AValue:String; AReplace:Boolean):Boolean;
Description: To be documented


[Expand]
function THTTPClient.SetRequestContentStream(AContent:TStream):Boolean;
Description: To be documented


[Expand]
function THTTPClient.AddRequestContentString(const AContent:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.SetRequestContentString(const AContent:String):Boolean;
Description: To be documented


[Expand]
function THTTPClient.GetResponseHeader(const AName:String):String;
Description: To be documented


[Expand]
function THTTPClient.GetResponseHeaderEx(const AName:String):TStringList;
Description: To be documented


[Expand]
function THTTPClient.GetResponseContentStream(AContent:TStream; ASize:LongWord):Boolean;
Description: To be documented


[Expand]
function THTTPClient.GetResponseContentString(var AContent:String; ASize:LongWord):Boolean;
Description: To be documented


Return to Unit Reference