TNetworkSettings
From Ultibo.org
Return to Unit Network
Description
To be documented
Class definitions
[Expand]
TNetworkSettings = class(TObject)
Function declarations
[Expand]
procedure TNetworkSettings.SetHostName(const AHostName:String);
Description: To be documented
[Expand]
procedure TNetworkSettings.SetDomainName(const ADomainName:String);
Description: To be documented
[Expand]
function TNetworkSettings.ExtractName(const AValue,AToken:String):String;
Description: Extract the name from a name value pair
[Expand]
function TNetworkSettings.ExtractValue(const AValue,AToken:String):String;
Description: Extract the value from a name value pair
[Expand]
function TNetworkSettings.ExtractPrefix(const AValue:String):String;
Description: Extract the prefix from the section header
[Expand]
function TNetworkSettings.SplitName(const AName:String):String;
Description: Split name only portion from the complete name
[Expand]
function TNetworkSettings.SplitPrefix(const AName:String):String;
Description: Split prefix from the complete name
[Expand]
function TNetworkSettings.MergePrefix(const APrefix,AName:String):String;
Description: Add prefix to name to make a complete name
[Expand]
function TNetworkSettings.TranslateString(const AValue,ADefault:String):String;
Description: To be documented
[Expand]
function TNetworkSettings.TranslateInteger(const AValue:String; ADefault:Integer):Integer;
Description: To be documented
[Expand]
function TNetworkSettings.TranslateBoolean(const AValue:String; ADefault:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.GetFromList(const AName:String):TNetworkSetting;
Description: To be documented
[Expand]
function TNetworkSettings.FindFromList(const AName:String):String;
Description: To be documented
[Expand]
function TNetworkSettings.FindFromEnvironment(const AName:String):String;
Description: To be documented
[Expand]
function TNetworkSettings.GetString(const AName:String):String;
Description: To be documented
[Expand]
function TNetworkSettings.GetStringDefault(const AName,ADefault:String):String;
Description: To be documented
[Expand]
function TNetworkSettings.GetInteger(const AName:String):Integer;
Description: To be documented
[Expand]
function TNetworkSettings.GetIntegerDefault(const AName:String; ADefault:Integer):Integer;
Description: To be documented
[Expand]
function TNetworkSettings.GetBoolean(const AName:String):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.GetBooleanDefault(const AName:String; ADefault:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.AddString(const AName,AValue:String):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.AddInteger(const AName:String; AValue:Integer):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.AddBoolean(const AName:String; AValue:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.Remove(const AName:String):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.LoadFromFile(const AFileName:String; AFlat:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.LoadFromStream(AStream:TStream; AFlat:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.LoadFromStrings(AStrings:TStrings; AFlat:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.SaveToFile(const AFileName:String; AFlat:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.SaveToStream(AStream:TStream; AFlat:Boolean):Boolean;
Description: To be documented
[Expand]
function TNetworkSettings.SaveToStrings(AStrings:TStrings; AFlat:Boolean):Boolean;
Description: To be documented
Return to Unit Reference