Return to Unit HTTP
Description
To be documented
Class definitions
[Expand]
THTTPHeader = class(TListObject)
public
|
constructor Create(const AName:String);
|
|
destructor Destroy; override;
|
|
private
|
FName:String;
|
|
FHash:LongWord;
|
|
FValues:TLinkedStringList;
|
|
public
|
property Name:String read FName;
|
|
property Hash:LongWord read FHash;
|
|
|
function GetCount:Integer;
|
|
|
function GetValue(AIndex:Integer):String;
|
|
function SetValue(AIndex:Integer; const AValue:String):Boolean;
|
|
function FindValue(const AValue:String):Integer;
|
|
|
function AddValue(const AValue:String):Boolean;
|
|
function DeleteValue(const AValue:String):Boolean;
|
|
Function declarations
[Expand]
constructor THTTPHeader.Create(const AName:String);
Description: To be documented
[Expand]
destructor THTTPHeader.Destroy;
Description: To be documented
[Expand]
function THTTPHeader.GetCount:Integer;
Description: To be documented
[Expand]
function THTTPHeader.GetValue(AIndex:Integer):String;
Description: To be documented
[Expand]
function THTTPHeader.SetValue(AIndex:Integer; const AValue:String):Boolean;
Description: To be documented
[Expand]
function THTTPHeader.FindValue(const AValue:String):Integer;
Description: To be documented
[Expand]
function THTTPHeader.AddValue(const AValue:String):Boolean;
Description: To be documented
[Expand]
function THTTPHeader.DeleteValue(const AValue:String):Boolean;
Description: To be documented
Return to Unit Reference