Class HandleOscTypesOnSourceJsonConverter
Inherited Members
Namespace: OpenSearch.Client.JsonNetSerializer.Converters
Assembly: OpenSearch.Client.JsonNetSerializer.dll
Syntax
public class HandleOscTypesOnSourceJsonConverter : JsonConverter
Constructors
| Edit this page View SourceHandleOscTypesOnSourceJsonConverter(IOpenSearchSerializer, IMemoryStreamFactory)
Declaration
public HandleOscTypesOnSourceJsonConverter(IOpenSearchSerializer builtInSerializer, IMemoryStreamFactory memoryStreamFactory)
Parameters
Type | Name | Description |
---|---|---|
IOpenSearchSerializer | builtInSerializer | |
IMemoryStreamFactory | memoryStreamFactory |
Properties
| Edit this page View SourceCanRead
Gets a value indicating whether this Newtonsoft.Json.JsonConverter can read JSON.
Declaration
public override bool CanRead { get; }
Property Value
Type | Description |
---|---|
bool |
|
Overrides
CanWrite
Gets a value indicating whether this Newtonsoft.Json.JsonConverter can write JSON.
Declaration
public override bool CanWrite { get; }
Property Value
Type | Description |
---|---|
bool |
|
Overrides
Methods
| Edit this page View SourceCanConvert(Type)
Determines whether this instance can convert the specified object type.
Declaration
public override bool CanConvert(Type objectType)
Parameters
Type | Name | Description |
---|---|---|
Type | objectType | Type of the object. |
Returns
Type | Description |
---|---|
bool |
|
Overrides
| Edit this page View SourceReadJson(JsonReader, Type, object, JsonSerializer)
Reads the JSON representation of the object.
Declaration
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
Parameters
Type | Name | Description |
---|---|---|
JsonReader | reader | The Newtonsoft.Json.JsonReader to read from. |
Type | objectType | Type of the object. |
object | existingValue | The existing value of object being read. |
JsonSerializer | serializer | The calling serializer. |
Returns
Type | Description |
---|---|
object | The object value. |
Overrides
| Edit this page View SourceWriteJson(JsonWriter, object, JsonSerializer)
Writes the JSON representation of the object.
Declaration
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
Parameters
Type | Name | Description |
---|---|---|
JsonWriter | writer | The Newtonsoft.Json.JsonWriter to write to. |
object | value | The value. |
JsonSerializer | serializer | The calling serializer. |