|
||
class CWTLSValidationResult : public CBase;
Encapsulates the results of the validation process.
It is returned to client code, which can examine it. Client code takes ownership of it.
CBase
-
Base class for all classes to be instantiated on the heap.
CWTLSValidationResult
- Encapsulates the results of the validation process.
Defined in CWTLSValidationResult
:
Error()const
Gets the error status of the operation.NewL()
Creates a new CWTLSValidationResult object.NewLC()
Creates a new CWTLSValidationResult object and puts a pointer to it on the clean...Warnings()const
Gets an array of any warnings generated.~CWTLSValidationResult()
Destructor.Inherited from CBase
:
Delete(CBase *)
Deletes the specified object.Extension_(TUint,TAny *&,TAny *)
Extension function operator new(TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TAny *)
Initialises the object to binary zeroes.operator new(TUint,TLeave)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TLeave,TUint)
Allocates the object from the heap and then initialises its contents to binary z...operator new(TUint,TUint)
Allocates the object from the heap and then initialises its contents to binary z...IMPORT_C static CWTLSValidationResult* NewLC();
Creates a new CWTLSValidationResult object and puts a pointer to it on the cleanup stack.
|
IMPORT_C static CWTLSValidationResult* NewL();
Creates a new CWTLSValidationResult object.
|
IMPORT_C ~CWTLSValidationResult();
Destructor.
Frees all resources owned by the object, prior to its destruction.
IMPORT_C const TWTLSValidationStatus Error() const;
Gets the error status of the operation.
Any errors here are considered fatal: validation has failed.
|
IMPORT_C const CArrayFixFlat< TWTLSValidationStatus >& Warnings() const;
Gets an array of any warnings generated.
The warnings may or may not be fatal, depending on the context, which the client is expected to provide.
|