Delegate EntityObjectJsonConverter.ToJson
delegate describing a function writing to a jsonwriter.
Assembly: TimeCockpit.Data.dll
Syntax
public delegate void ToJson(object value, JsonWriter writer);
Parameters
| Type |
Name |
Description |
| System.Object |
value |
the value to write.
|
| Newtonsoft.Json.JsonWriter |
writer |
The writer.
|
Constructors
ToJson(Object, IntPtr)
Declaration
public ToJson(object object, IntPtr method)
Parameters
| Type |
Name |
Description |
| System.Object |
object |
|
| System.IntPtr |
method |
|
Methods
BeginInvoke(Object, JsonWriter, AsyncCallback, Object)
Declaration
public virtual IAsyncResult BeginInvoke(object value, JsonWriter writer, AsyncCallback callback, object object)
Parameters
| Type |
Name |
Description |
| System.Object |
value |
|
| Newtonsoft.Json.JsonWriter |
writer |
|
| System.AsyncCallback |
callback |
|
| System.Object |
object |
|
Returns
| Type |
Description |
| System.IAsyncResult |
|
EndInvoke(IAsyncResult)
Declaration
public virtual void EndInvoke(IAsyncResult result)
Parameters
| Type |
Name |
Description |
| System.IAsyncResult |
result |
|
Invoke(Object, JsonWriter)
Declaration
public virtual void Invoke(object value, JsonWriter writer)
Parameters
| Type |
Name |
Description |
| System.Object |
value |
|
| Newtonsoft.Json.JsonWriter |
writer |
|