|
|
|
|
Location:
mmfcontrollerframeworkbase.h
Link against: mmfcontrollerframework.lib
class CMMFUrlParams : public CBase;
Class to be used to configure a URL source or sink.
Contains a variable length string to represent the URL, and whether to use a specified Internet Access Point or use the default.
CBase - Base class for all classes to be instantiated on the heap
CMMFUrlParams - Class to be used to configure a URL source or sink
Defined in CMMFUrlParams:
ExternalizeL(), ExternalizeToCBufFlatLC(), IAPId(), NewL(), NewLC(), NewLC(), Url(), UseIAPId()
Inherited from CBase:
Delete(),
Extension_(),
operator new()
static IMPORT_C CMMFUrlParams *NewL(const TDesC &aUrl, TInt aIAPId=KUseDefaultIap);
Factory function to create a CMMFUrlParams object.
This method can leave with one of the standard system-wide error codes.
|
|
static IMPORT_C CMMFUrlParams *NewLC(const TDesC &aUrl, TInt aIAPId=KUseDefaultIap);
Factory function to create a CMMFUrlParams object.
This method can leave with one of the standard system-wide error codes.
|
|
static IMPORT_C CMMFUrlParams *NewLC(RReadStream &aStream);
Factory function to create a CMMFUrlParams object by internalizing data from a stream.
This method can leave with one of the standard system-wide error codes.
|
|
IMPORT_C void ExternalizeL(RWriteStream &aStream) const;
Externalize this object to a stream.
This method can leave with one of the standard system-wide error codes.
|
IMPORT_C CBufFlat *ExternalizeToCBufFlatLC() const;
Externalize this object into a newly created CBufFlat buffer.
This method can leave with one of the standard system-wide error codes.
|
IMPORT_C const TDesC &Url() const;
Returns the URL string, for example http://www.symbian.com/clip/mpg.
|
IMPORT_C TInt IAPId() const;
Returns the Internet Access Point ID.
|
IMPORT_C TBool UseIAPId() const;
Signifies whether the IAP ID should be used. This is determined internally by comparing the IAP ID with KUseDefaultIap.
|