Delegate Configuration.ConfigurationParam.CheckValueHandler
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
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
Methods
BeginInvoke(object, AsyncCallback, object)
public virtual IAsyncResult BeginInvoke(object value, AsyncCallback callback, object @object)
Parameters
valueobjectcallbackAsyncCallbackobjectobject
Returns
EndInvoke(IAsyncResult)
public virtual object EndInvoke(IAsyncResult result)
Parameters
resultIAsyncResult
Returns
Invoke(object)
public virtual object Invoke(object value)
Parameters
valueobject