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