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
stringName of the event that invoked this callback
intValue
intInteger 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
Methods
BeginInvoke(string, int, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(string senderName, int intValue, AsyncCallback callback, object @object)
Parameters
senderName
stringintValue
intcallback
AsyncCallbackobject
object
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
result
IAsyncResult
Invoke(string, int)
public virtual void Invoke(string senderName, int intValue)