Difference between revisions of "THTTPHeader"

From Ultibo.org
Jump to: navigation, search
(Created page with "Return to Unit HTTP __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-collapse...")
 
(No difference)

Latest revision as of 06:27, 17 May 2018

Return to Unit HTTP


Description


To be documented

Class definitions



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



constructor THTTPHeader.Create(const AName:String);
Description: To be documented
Note None documented


destructor THTTPHeader.Destroy;
Description: To be documented
Note None documented


function THTTPHeader.GetCount:Integer;
Description: To be documented
Note None documented


function THTTPHeader.GetValue(AIndex:Integer):String;
Description: To be documented
Note None documented


function THTTPHeader.SetValue(AIndex:Integer; const AValue:String):Boolean;
Description: To be documented
Note None documented


function THTTPHeader.FindValue(const AValue:String):Integer;
Description: To be documented
Note None documented


function THTTPHeader.AddValue(const AValue:String):Boolean;
Description: To be documented
Note None documented


function THTTPHeader.DeleteValue(const AValue:String):Boolean;
Description: To be documented
Note None documented


Return to Unit Reference