Delegate SDKChangeEventHandler<T>
Delegate SDKChangeEventHandler. Used when state has changed from previous to current.
Namespace: VpnSDK
Assembly: cs.temp.dll.dll
Syntax
public delegate void SDKChangeEventHandler<in T>(ISDK sender, T previous, T current);
Parameters
Type | Name | Description |
---|---|---|
ISDK | sender | The SDK instance that has fired the event. |
T | previous | The previous state. |
T | current | The current state. |
Type Parameters
Name | Description |
---|---|
T | The state type. |