Show / Hide Table of Contents

Class ContainerConfigModelConverter

Inheritance
object
JsonConverter
ContainerConfigModelConverter
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class ContainerConfigModelConverter : JsonConverter

Properties

CanRead

Gets a value indicating whether this Newtonsoft.Json.JsonConverter can read JSON.

Declaration
public override bool CanRead { get; }
Property Value
Type Description
bool

true if this Newtonsoft.Json.JsonConverter can read JSON; otherwise, false.

Overrides
Newtonsoft.Json.JsonConverter.CanRead

CanWrite

Gets a value indicating whether this Newtonsoft.Json.JsonConverter can write JSON.

Declaration
public override bool CanWrite { get; }
Property Value
Type Description
bool

true if this Newtonsoft.Json.JsonConverter can write JSON; otherwise, false.

Overrides
Newtonsoft.Json.JsonConverter.CanWrite

Methods

CanConvert(Type)

Determines whether this instance can convert the specified object type.

Declaration
public override bool CanConvert(Type type)
Parameters
Type Name Description
Type type
Returns
Type Description
bool

true if this instance can convert the specified object type; otherwise, false.

Overrides
JsonConverter.CanConvert(Type)

ReadJson(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
JsonConverter.ReadJson(JsonReader, Type, object, JsonSerializer)

WriteJson(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.

Overrides
JsonConverter.WriteJson(JsonWriter, object, JsonSerializer)
In this article
Back to top