Interface IConfigurationCallback

The callback interface for GetSecurity(IConfigurationCallback).

Inherited Members
ICallback.OnError(ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients.SecurityControl
Assembly: Diffusion.Client.dll
Syntax
public interface IConfigurationCallback : 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(ISecurityConfiguration)

This is called to return the requested security configuration.

Declaration
void OnReply(ISecurityConfiguration configuration)
Parameters
Type Name Description
ISecurityConfiguration configuration

The snapshot of information from the security store.

Back to top