Class FhirExpandoJsonConverter
A FHIR expando JSON converter.
Inheritance
System.Object
FhirExpandoJsonConverter
Namespace: Microsoft.Health.Fhir.SpecManager.Models
Assembly: Microsoft.Health.Fhir.SpecManager.dll
Syntax
public class FhirExpandoJsonConverter : JsonConverter<FhirExpando>
Methods
| Improve this Doc View SourceRead(ref Utf8JsonReader, Type, JsonSerializerOptions)
Reads and converts the JSON to type T
.
Declaration
public override FhirExpando Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
Parameters
Type | Name | Description |
---|---|---|
Utf8Json |
reader | [in,out] The reader. |
Type | typeToConvert | The type to convert. |
Json |
options | An object that specifies serialization options to use. |
Returns
Type | Description |
---|---|
Fhir |
The converted value. |
Write(Utf8JsonWriter, FhirExpando, JsonSerializerOptions)
Writes a specified value as JSON.
Declaration
public override void Write(Utf8JsonWriter writer, FhirExpando value, JsonSerializerOptions options)
Parameters
Type | Name | Description |
---|---|---|
Utf8Json |
writer | The writer to write to. |
Fhir |
value | The value to convert to JSON. |
Json |
options | An object that specifies serialization options to use. |