Table of Contents

Delegate ValidationEventHandler

Namespace
Newtonsoft.Json.Schema
Assembly
Newtonsoft.Json.dll

Represents the callback method that will handle JSON schema validation events and the ValidationEventArgs.

public delegate void ValidationEventHandler(object sender, ValidationEventArgs e)

Parameters

sender object
e ValidationEventArgs

Constructors

ValidationEventHandler(object, nint)

public ValidationEventHandler(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(object, ValidationEventArgs, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object sender, ValidationEventArgs e, AsyncCallback callback, object @object)

Parameters

sender object
e ValidationEventArgs
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(object, ValidationEventArgs)

public virtual void Invoke(object sender, ValidationEventArgs e)

Parameters

sender object
e ValidationEventArgs