Location:
sipextensionheader.h
Link against: sipcodec.lib
class CSIPExtensionHeader : public CSIPHeaderBase;
The class stores unknown and extension headers that are either not supported by the current SIP codec implementation or not specified in current SIP RFC or both.
sipcodec.lib
CBase
- Base class for all classes to be instantiated on the heap
CSIPHeaderBase
- Class provides a generic interface for all the SIP headers
CSIPExtensionHeader
- The class stores unknown and extension headers that are either not supported by the current SIP codec implementation or
not specified in current SIP RFC or both
Defined in CSIPExtensionHeader
:
CloneL()
, ExternalizeSupported()
, InternalizeValueL()
, Name()
, NewL()
, NewLC()
, SetValueL()
, ToTextValueL()
, Value()
, ~CSIPExtensionHeader()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Inherited from CSIPHeaderBase
:
ExternalizeL()
,
PushLC()
,
ToTextL()
,
ToTextLC()
,
ToTextValueLC()
static IMPORT_C CSIPExtensionHeader *NewL(const TDesC8 &aName, const TDesC8 &aValue);
Creates a new instance of CSIPExtensionHeader
|
|
static IMPORT_C CSIPExtensionHeader *NewLC(const TDesC8 &aName, const TDesC8 &aValue);
Creates a new instance of CSIPExtensionHeader and puts it to CleanupStack
|
|
IMPORT_C ~CSIPExtensionHeader();
Destructor, deletes the resources of CSIPExtensionHeader.
IMPORT_C void SetValueL(const TDesC8 &aValue);
Sets the header value
|
IMPORT_C const TDesC8 &Value() const;
Gets the header value
|
static IMPORT_C CSIPExtensionHeader *InternalizeValueL(RReadStream &aReadStream);
Constructs an instance of a CSIPExtensionHeader from a RReadStream
|
|
virtual IMPORT_C CSIPHeaderBase *CloneL() const;
From CSIPHeaderBase
CloneL
|
virtual IMPORT_C HBufC8 *ToTextValueL() const;
From CSIPHeaderBase
ToTextValueL
|
virtual IMPORT_C TBool ExternalizeSupported() const;
From CSIPHeaderBase
ExternalizeSupported
|