Interface IUpdateStoreCallback

The callback interface for UpdateStore(String, IUpdateStoreCallback) calls.

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

OnRejected(IReadOnlyCollection<IErrorReport>)

The script was rejected and no changes were made to the security store.

Declaration
void OnRejected(IReadOnlyCollection<IErrorReport> errors)
Parameters
Type Name Description
IReadOnlyCollection<IErrorReport> errors

The details of why the script was rejected.

OnSuccess()

The script was applied successfully.

Declaration
void OnSuccess()
Back to top