Interface IConfigurationContextCallback<TContext>

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

Inherited Members
IContextCallback<TContext>.OnError(TContext, ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients.SecurityControl
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, ISecurityConfiguration)

This is called to return the requested security configuration.

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

The context for this operation.

ISecurityConfiguration configuration

The snapshot of information from the security store.

Back to top