Interface IConfigurationContextCallback<TContext>

The callback interface for GetSystemAuthentication<TContext>(TContext, IConfigurationContextCallback<TContext>).

Inherited Members
IContextCallback<TContext>.OnError(TContext, ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
Assembly: Diffusion.Client.dll
Syntax
public interface IConfigurationContextCallback<in TContext> : IContextCallback<TContext>
Type Parameters
Name Description
TContext

The context type.

Methods

OnReply(TContext, ISystemAuthenticationConfiguration)

This is called to return the requested system authentication configuration.

Declaration
void OnReply(TContext context, ISystemAuthenticationConfiguration configuration)
Parameters
Type Name Description
TContext context

The context for this operation.

ISystemAuthenticationConfiguration configuration

The snapshot of information from the system authentication store.

Back to top