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
senderName
stringName of the event that invoked this callback
boolValue
boolBoolean 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
senderName
stringboolValue
boolcallback
AsyncCallbackobject
object
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
result
IAsyncResult
Invoke(string, bool)
public virtual void Invoke(string senderName, bool boolValue)