Table of Contents

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 string

Name of the event that invoked this callback

stringValue string

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)

public StringValue(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(string, string, AsyncCallback, object)

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

Parameters

senderName string
stringValue string
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(string, string)

public virtual void Invoke(string senderName, string stringValue)

Parameters

senderName string
stringValue string