Table of Contents

Delegate ObjectConstructor<T>

Namespace
Newtonsoft.Json.Serialization
Assembly
Newtonsoft.Json.dll

Represents a method that constructs an object.

public delegate object ObjectConstructor<T>(params object[] args)

Parameters

args object[]

Returns

object

Type Parameters

T

Constructors

ObjectConstructor(object, nint)

public ObjectConstructor(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(object[], AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object[] args, AsyncCallback callback, object @object)

Parameters

args object[]
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual object EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Returns

object

Invoke(params object[])

public virtual object Invoke(params object[] args)

Parameters

args object[]

Returns

object