Interface ISessionPropertiesCallback

The callback interface for GetSessionProperties(ISessionId, List<String>, ISessionPropertiesCallback).

Inherited Members
ICallback.OnError(ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control
Assembly: Diffusion.Client.dll
Syntax
public interface ISessionPropertiesCallback : ICallback
Remarks

Caution

Deprecated since 6.7. Methods that use callbacks are deprecated and will be removed in a future release. Use a Task instead.

Methods

OnReply(ISessionId, Dictionary<String, String>)

Called to return requested session properties.

Declaration
void OnReply(ISessionId sessionId, Dictionary<string, string> properties)
Parameters
Type Name Description
ISessionId sessionId

The session identifier.

Dictionary<System.String, System.String> properties

Map of the requested session property values.

OnUnknownSession(ISessionId)

Called to indicate that the session indicated in a request is not known by the server.

Declaration
void OnUnknownSession(ISessionId sessionId)
Parameters
Type Name Description
ISessionId sessionId

The requested session identifier.

Back to top