Delegate Delegates.BoolValue
- Namespace
- NixUniversalSDK.Wrapper
- Assembly
- NixUniversalSDK.Wrapper.dll
Delegate definition for a callback with a boolean argument
public delegate void Delegates.BoolValue(string senderName, bool boolValue)
Parameters
senderNamestringName of the event that invoked this callback
boolValueboolBoolean value for this event
Examples
The equivalent C function pointer for this delegate is:
void (*callback)(const char*, bool)
Constructors
BoolValue(object, nint)
public BoolValue(object @object, nint method)
Parameters
Methods
BeginInvoke(string, bool, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(string senderName, bool boolValue, AsyncCallback callback, object @object)
Parameters
senderNamestringboolValueboolcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Invoke(string, bool)
public virtual void Invoke(string senderName, bool boolValue)