Delegate RemotelyInvokedDelegate
- Namespace
- Ranorex
- Assembly
- Ranorex.Plugin.WinForms.dll
Delegate for the InvokeRemotely(RemotelyInvokedDelegate) method with input data.
public delegate object RemotelyInvokedDelegate(Control control, object inputData)
Parameters
controlControlThe remote Control on which the InvokeRemotely(RemotelyInvokedDelegate) method is called.
inputDataobject(Serializable) data as additional input for the delegate.
Returns
- object
A serializable object.
Constructors
RemotelyInvokedDelegate(object, IntPtr)
public RemotelyInvokedDelegate(object @object, IntPtr method)
Parameters
Methods
BeginInvoke(Control, object, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(Control control, object inputData, AsyncCallback callback, object @object)
Parameters
controlControlinputDataobjectcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual object EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Returns
Invoke(Control, object)
public virtual object Invoke(Control control, object inputData)