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.

Remarks

Caution

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

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