Table of Contents

Delegate Delegates.IntValue

Namespace
NixUniversalSDK.Wrapper
Assembly
NixUniversalSDK.Wrapper.dll

Delegate definition for a callback with an integer argument

public delegate void Delegates.IntValue(string senderName, int intValue)

Parameters

senderName string

Name of the event that invoked this callback

intValue int

Integer value for this event

Examples

The equivalent C function pointer for this delegate is:

void (*callback)(const char*, int32_t)

Constructors

IntValue(object, nint)

public IntValue(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(string, int, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(string senderName, int intValue, AsyncCallback callback, object @object)

Parameters

senderName string
intValue int
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(string, int)

public virtual void Invoke(string senderName, int intValue)

Parameters

senderName string
intValue int