Click or drag to resize
SimpleStringJsonConverterT Class
Provides a base class for JSON converters that represent serialized objects as a simple string.
Inheritance Hierarchy
SystemObject
  Newtonsoft.JsonJsonConverter
    net.openstack.Core.Domain.ConvertersSimpleStringJsonConverterT
      net.openstack.Core.Domain.ConvertersIPAddressSimpleConverter
      net.openstack.Core.Domain.ConvertersPhysicalAddressSimpleConverter

Namespace: net.openstack.Core.Domain.Converters
Assembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax
public abstract class SimpleStringJsonConverter<T> : JsonConverter

Type Parameters

T
The deserialized object type.

The SimpleStringJsonConverterT type exposes the following members.

Methods
  NameDescription
Public methodCanConvert
Determines whether this instance can convert the specified object type.
(Overrides JsonConverterCanConvert(Type).)
Public methodGetSchema
Gets the JsonSchema of the JSON produced by the JsonConverter.
(Inherited from JsonConverter.)
Public methodReadJson
Reads the JSON representation of the object.
(Overrides JsonConverterReadJson(JsonReader, Type, Object, JsonSerializer).)
Public methodWriteJson
Writes the JSON representation of the object.
(Overrides JsonConverterWriteJson(JsonWriter, Object, JsonSerializer).)
Top
Properties
  NameDescription
Public propertyCanRead
Gets a value indicating whether this JsonConverter can read JSON.
(Inherited from JsonConverter.)
Public propertyCanWrite
Gets a value indicating whether this JsonConverter can write JSON.
(Inherited from JsonConverter.)
Top
Version Information

.NET Framework

Supported in: 4.5

openstack.net

Supported in: 1.6, 1.5, 1.4, 1.3.6
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also