Delegate Delegates.StringValue
- Namespace
- NixUniversalSDK.Wrapper
- Assembly
- NixUniversalSDK.Wrapper.dll
Delegate definition for a callback with a string argument
public delegate void Delegates.StringValue(string senderName, string stringValue)
Parameters
senderName
stringName of the event that invoked this callback
stringValue
stringString value for this event
Examples
The equivalent C function pointer for this delegate is:
void (*callback)(const char*, const char*)
Constructors
StringValue(object, nint)
public StringValue(object @object, nint method)
Parameters
Methods
BeginInvoke(string, string, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(string senderName, string stringValue, AsyncCallback callback, object @object)
Parameters
senderName
stringstringValue
stringcallback
AsyncCallbackobject
object
Returns
EndInvoke(IAsyncResult)
public virtual void EndInvoke(IAsyncResult result)
Parameters
result
IAsyncResult
Invoke(string, string)
public virtual void Invoke(string senderName, string stringValue)