THTTPParams

From Ultibo.org
Revision as of 06:26, 17 May 2018 by Ultibo (Talk | contribs) (Created page with "Return to Unit HTTP __TOC__ === Description === ---- ''To be documented'' === Class definitions === ---- <div class="toccolours mw-collapsible mw-collapse...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Return to Unit HTTP


Description


To be documented

Class definitions



THTTPParams = class(TObject)

public
constructor Create;  
destructor Destroy; override;  
private
FParams:TLinkedObjList;  
public
procedure Clear;  
 
function GetCount:Integer;  
 
function GetParam(APrevious:THTTPParam):THTTPParam;  
function FindParam(const AName:String):THTTPParam;  
 
function AddParam(const AName,AValue:String):Boolean;  
function DeleteParam(const AName:String):Boolean;  


Function declarations



constructor THTTPParams.Create;
Description: To be documented
Note None documented


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


procedure THTTPParams.Clear;
Description: To be documented
Note None documented


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


function THTTPParams.GetParam(APrevious:THTTPParam):THTTPParam;
Description: To be documented
Note None documented


function THTTPParams.FindParam(const AName:String):THTTPParam;
Description: To be documented
Note None documented


function THTTPParams.AddParam(const AName,AValue:String):Boolean;
Description: To be documented
Note None documented


function THTTPParams.DeleteParam(const AName:String):Boolean;
Description: To be documented
Note None documented


Return to Unit Reference