Location:
Authority16.h
Link against: inetprotutil.lib
class CAuthority16 : public CBase;
Dependencies : CBase
, TAuthorityC16
. Comments : Provides modifying functionality on the components of an authority object, as defined in RFC2396. There are 3
components; userinfo, host and port.
The object holds parsed authority information. It is owning. It uses 16-bit descriptors.
The functionality provided by this API allows the authority components to be set or removed from this parsed authority. Also,
it provides a reference to TAuthorityC16
object so that the non-modifying functionality can be used.
CBase
- Base class for all classes to be instantiated on the heap
CAuthority16
- Dependencies :
Defined in CAuthority16
:
Authority()
, NewL()
, NewL()
, NewLC()
, NewLC()
, RemoveComponentL()
, SetAndEscapeComponentL()
, SetComponentL()
, ~CAuthority16()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
static IMPORT_C CAuthority16 *NewL(const TAuthorityC16 &aAuthority);
Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack
. Creates an authority object which is a copy of the input parameter aAuthority.
A fully constructed and initialized CAuthority16 object.
|
|
static IMPORT_C CAuthority16 *NewLC(const TAuthorityC16 &aAuthority);
Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack
. Creates an authority object which is a copy of the input parameter aAuthority.
A fully constructed and initialized CAuthority16 object.
|
|
static IMPORT_C CAuthority16 *NewL();
Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack
. Creates an authority object which is empty.
A fully constructed and initialized CAuthority16 object.
|
static IMPORT_C CAuthority16 *NewLC();
Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack
. Creates an authority object which is empty.
A fully constructed and initialized CAuthority16 object.
|
IMPORT_C const TAuthorityC16 &Authority() const;
Provides a reference to the parsed authority. Allows access to the non-modifying API for TAuthorityC.
|
IMPORT_C void SetComponentL(const TDesC16 &aData, TAuthorityComponent aComponent);
Object is fully constructed.
Sets the specified component in the authority. The component is set to the value given in the argument aData. If the specified component already exists then it is replaced with the new value.
The authority has the specified component set to the new value.
|
IMPORT_C void SetAndEscapeComponentL(const TDesC16 &aData, TAuthorityComponent aComponent);
Object is fully constructed.
Escape encodes the component then sets the specified component in the authority. The component is set to the value given in the argument aData. If the specified component already exists then it is replaced with the new value.
The authority has the specified component set to the new value.
|
IMPORT_C void RemoveComponentL(TAuthorityComponent aComponent);
Object is fully constructed.
Removes the specified component from the authority. If the component does not exist then this function does nothing.
The authority is updated to exclude the specified component.
|