TicketCollectionConverterT Class

Serializes and deserializes a property representing a collection of items that inherit from the BaseItem object.

Definition

Namespace: ProjectTask
Assembly: ProjectTask (in ProjectTask.dll) Version: 25.2814.3647
C#
public class TicketCollectionConverter<T> : JsonConverter
where T : new()
Inheritance
Object    JsonConverter    TicketCollectionConverterT

Type Parameters

T
Type of object containing the ticket collection to be converted.

Constructors

TicketCollectionConverterTInitializes a new instance of the TicketCollectionConverterT class

Properties

CanRead
(Inherited from JsonConverter)
CanWrite
(Inherited from JsonConverter)

Methods

CanConvert Return a value indicating whether the provided object type can be converted.
(Overrides JsonConverter.CanConvert(Type))
Equals
(Inherited from Object)
Finalize
(Inherited from Object)
GetHashCode
(Inherited from Object)
GetType
(Inherited from Object)
MemberwiseClone
(Inherited from Object)
ReadJson Read JSON content from the file.
(Overrides JsonConverter.ReadJson(JsonReader, Type, Object, JsonSerializer))
ToString
(Inherited from Object)
WriteJson Write the JSON data for this value.
(Overrides JsonConverter.WriteJson(JsonWriter, Object, JsonSerializer))

See Also