Interface ISessionId

A unique ISession identifier, allocated by the server.

Namespace: PushTechnology.ClientInterface.Client.Session
Assembly: Diffusion.Client.dll
Syntax
public interface ISessionId
Remarks

Note

This interface does not require user implementation and is only used to hide implementation details.

Added in 5.0.

Examples

An instance of this interface can be obtained by calling SessionId.

// session is a previously obtained ISession instance.
var id = session.SessionId;
Back to top