Interface IConfigurationCallback

The callback interface for GetSystemAuthentication(IConfigurationCallback).

Inherited Members
ICallback.OnError(ErrorReason)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
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(ISystemAuthenticationConfiguration)

This is called to return the requested system authentication configuration.

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

The snapshot of information from the system authentication store.

Back to top