Indy 9
|
TIdAuthenticationItem = class(TCollectionItem)
property Params: TStringList;
Params is initialized in the Create constructor, and released in the Destroy destructor. Write access to the Params property calls Assign to transfer the values from a TStringList to the property.
property URL: TIdURI;
URL is initialized in the Create constructor, and released in the Destroy destructor. Write access to the URL property copies the URI for the new value to the URI for the property.
constructor Create(ACollection: TCOllection); override;
destructor Destroy; override;