Table of Contents

Delegate Configuration.ConfigurationParam.CheckValueHandler

Namespace
Ranorex.Core
Assembly
Ranorex.Core.dll

Checks whether the value is valid for this parameter and converts the value to a valid format if possible.

public delegate object Configuration.ConfigurationParam.CheckValueHandler(object value)

Parameters

value object

The value to set to the Value property.

Returns

object

The checked value, possibly converted to a valid format if possible.

Remarks

Throw an ArgumentException inside the handler if the value is not a valid value and cannot be made valid for this parameter.

Constructors

CheckValueHandler(object, IntPtr)

public CheckValueHandler(object @object, IntPtr method)

Parameters

object object
method IntPtr

Methods

BeginInvoke(object, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object value, AsyncCallback callback, object @object)

Parameters

value object
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual object EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Returns

object

Invoke(object)

public virtual object Invoke(object value)

Parameters

value object

Returns

object