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
senderNamestringName of the event that invoked this callback
intValueintInteger 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
senderNamestringintValueintcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Invoke(string, int)
public virtual void Invoke(string senderName, int intValue)