Class BugRepositoryConverter
Inherited Members
JsonConverter.CanRead
JsonConverter.CanWrite
Namespace: CrashCABN.BugFiler
Assembly: CrashCABN.BugFiler.Abstractions.dll
Syntax
public class BugRepositoryConverter : JsonConverter
Fields
View SourceMalformedRepositoryError
Declaration
public static readonly string MalformedRepositoryError
Field Value
Type | Description |
---|---|
string |
UnsupportedRepositoryTypeError
Declaration
public const string UnsupportedRepositoryTypeError = "Unsupported repository type in the configuration:"
Field Value
Type | Description |
---|---|
string |
Methods
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
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
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. |