Symbian
Symbian Developer Library

SYMBIAN OS V9.4

Feedback

[Index] [Previous] [Next]

#include <DelimitedPathSegment8.h>
Link against: inetprotutil.lib

Class CDelimitedPathSegment8

class CDelimitedPathSegment8 : public CDelimitedDataBase8;

Description

Dependencies : CDelimitedStringBase8 Comments : Provides functionality to create a delimited path segment where components of the path segment delimited by '/' as defined in RFC2396.

Derivation

Members

Defined in CDelimitedPathSegment8:

Inherited from CBase:

Inherited from CDelimitedDataBase8:


Construction and destruction


NewL(const TDesC8 &)

IMPORT_C static CDelimitedPathSegment8* NewL(const TDesC8 &aPathSegment);

Description

Static factory constructor. Uses two phase construction and leaves nothing on the CleanupStack.

Post-Condition

Nothing left on the CleanupStack.

Parameters

const TDesC8 &aPathSegment

A descriptor with the initial path segment.

Return value

CDelimitedPathSegment8 *

A pointer to created object.


NewLC(const TDesC8 &)

IMPORT_C static CDelimitedPathSegment8* NewLC(const TDesC8 &aPathSegment);

Description

Static factory constructor. Uses two phase construction and leaves a pointer to created object on the CleanupStack.

Post-Condition

Pointer to created object left of CleanupStack.

Parameters

const TDesC8 &aPathSegment

A descriptor with the initial path segment.

Return value

CDelimitedPathSegment8 *

A pointer to created object.


~CDelimitedPathSegment8()

IMPORT_C ~CDelimitedPathSegment8();

Description

Destructor.

[Top]


Member functions


InsertAndEscapeCurrentL(const TDesC8 &)

IMPORT_C void InsertAndEscapeCurrentL(const TDesC8 &aParam);

Pre-Condition

The path segment must have been initially parsed.

Description

Escape encodes the parameter then inserts the escaped version in a position before the current parsed parameter. The new parameter should only contain a single path segment parameter, as any parameter delimiters in the parameter will be converted to an escape triple. The parser is left in a state where its current parameter is the same one as before the insertion.

Post-Condition

The path segment will have been extended to include the new parameter. The current segment will remain as the one before the insertion.

Parameters

const TDesC8 &aParam

A descriptor with the unescaped path segment parameter


PushAndEscapeFrontL(const TDesC8 &)

IMPORT_C void PushAndEscapeFrontL(const TDesC8 &aParam);

Pre-Condition

The path segment must have been initially parsed.

Description

Escape encodes the parameter then inserts the escaped version at the back of the path segment. The new parameter should only contain a single path segment parameter, as any parameter delimiters in the parameter will be converted to an escape triple. The parser is left in a state where its current parameter is the same one as before the insertion.

Post-Condition

The path segment will have been extended to include the new parameter. The current segment will remain as the one before the insertion.

Parameters

const TDesC8 &aParam

A descriptor with the unescaped path segment parameter.


PushAndEscapeBackL(const TDesC8 &)

IMPORT_C void PushAndEscapeBackL(const TDesC8 &aParam);

Pre-Condition

The path segment must have been initially parsed.

Description

Escape encodes the parameter then inserts the escaped version at the front of the path segment. The new parameter should only contain a single path segment parameter, as any parameter delimiters in the parameter will be converted to an escape triple. The parser is left in a state where its current parameter is the same one as before the insertion.

Post-Condition

The path segment will have been extended to include the new parameter. The current segment will remain as the one before the insertion.

Parameters

const TDesC8 &aParam

A descriptor with the unescaped path segment parameter