»
Symbian OS v9.3 »
Symbian OS reference »
C++ component reference »
Security CERTMAN »
CWTLSText
Location:
wtlsnames.h
Link against: wtlscert.lib
class CWTLSText : public CBase;
Description
Derivation
CBase
- Base class for all classes to be instantiated on the heap
CWTLSText
- (No abstract)
Members
Defined in CWTLSText
:
CharacterSet()
, ExactMatchL()
, Name()
, NewL()
, NewL()
, NewLC()
, NewLC()
, iName
, ~CWTLSText()
Inherited from CBase
:
Delete()
,
Extension_()
,
operator new()
Construction and destruction
static IMPORT_C CWTLSText *NewL(const TDesC8 &aBinaryData);
Description
Creates a new CWTLSText object from the specified buffer containing the binary coded representation.
Parameters
const TDesC8 &aBinaryData |
The encoded binary representation.
|
|
Return value
static IMPORT_C CWTLSText *NewLC(const TDesC8 &aBinaryData);
Description
Creates a new CWTLSText object from the specified buffer containing the binary coded representation, and puts a pointer to
it onto the cleanup stack.
Parameters
const TDesC8 &aBinaryData |
The encoded binary representation.
|
|
Return value
static IMPORT_C CWTLSText *NewL(const TDesC8 &aBinaryData, TInt &aPos);
Description
Creates a new CWTLSText object from the specified buffer containing the binary coded representation, starting at the specified
offset.
Parameters
const TDesC8 &aBinaryData |
The encoded binary representation.
|
TInt &aPos |
The offset position from which to start decoding. It specifies an offset into the descriptor, and is updated to the position
at the end of the object.
|
|
Return value
static IMPORT_C CWTLSText *NewLC(const TDesC8 &aBinaryData, TInt &aPos);
Description
Creates a new CWTLSText object from the specified buffer containing the binary coded representation, starting at the specified
offset, and puts a pointer to it onto the cleanup stack.
Parameters
const TDesC8 &aBinaryData |
The encoded binary representation.
|
TInt &aPos |
The offset position from which to start decoding. It specifies an offset into the descriptor, and is updated to the position
at the end of the object.
|
|
Return value
IMPORT_C ~CWTLSText();
Description
Destructor.
Frees all resources owned by the object, prior to its destruction.
IMPORT_C TBool ExactMatchL(const CWTLSText &aName) const;
Description
Performs a simple byte compare between this CWTLSText object and a specified CWTLSText object.
There is a subtle difference between this byte-match and CWTLSName::ExactMatchL()
. As opposed to the latter, this function should successfully match two names that are the same that were encoded using different
character sets.
Parameters
const CWTLSText &aName |
An existing CWTLSText object.
|
|
Return value
TBool
|
ETrue, if the CWTLSText objects match; EFalse, otherwise.
|
|
IMPORT_C TPtrC Name() const;
Description
Gets the name of the CWTLSText object.
Return value
TPtrC
|
A pointer to the name of the CWTLSText object.
|
|
IMPORT_C TWTLSCharSet CharacterSet() const;
Description
Gets the character set of the CWTLSText object.
Return value
protected: HBufC * iName;
Description