Interface IRequestContext

Context of the request received.

Namespace: PushTechnology.ClientInterface.Client.Features
Assembly: Diffusion.Client.dll
Syntax
public interface IRequestContext
Remarks

Since 6.1

Properties

Path

Gets the path.

Declaration
string Path { get; }
Property Value
Type Description
System.String

The path.

SessionId

Gets the session identifier.

Declaration
ISessionId SessionId { get; }
Property Value
Type Description
ISessionId

The session id.

SessionProperties

Gets the session properties.

Declaration
IReadOnlyDictionary<string, string> SessionProperties { get; }
Property Value
Type Description
IReadOnlyDictionary<System.String, System.String>

The session properties.

Back to top