Table of Contents

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 string

Name of the event that invoked this callback

boolValue bool

Boolean 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

object object
method nint

Methods

BeginInvoke(string, bool, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(string senderName, bool boolValue, AsyncCallback callback, object @object)

Parameters

senderName string
boolValue bool
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(string, bool)

public virtual void Invoke(string senderName, bool boolValue)

Parameters

senderName string
boolValue bool