Show / Hide Table of Contents

Interface IFhirJsonSerializable

Interface for indicating FHIR Json Serialization is possible.

Namespace: fhirCsR2.Serialization
Assembly: fhirCsR2.dll
Syntax
public interface IFhirJsonSerializable

Methods

| Improve this Doc View Source

DeserializeJson(ref Utf8JsonReader, JsonSerializerOptions)

Parse an open JSON object into the current object.

Declaration
void DeserializeJson(ref Utf8JsonReader reader, JsonSerializerOptions options)
Parameters
Type Name Description
Utf8JsonReader reader
JsonSerializerOptions options
| Improve this Doc View Source

DeserializeJsonProperty(ref Utf8JsonReader, JsonSerializerOptions, String)

Parse a specific property from an open JSON object into a field in the current object.

Declaration
void DeserializeJsonProperty(ref Utf8JsonReader reader, JsonSerializerOptions options, string propertyName)
Parameters
Type Name Description
Utf8JsonReader reader
JsonSerializerOptions options
System.String propertyName
| Improve this Doc View Source

SerializeJson(Utf8JsonWriter, JsonSerializerOptions, Boolean)

Serialize to a JSON object

Declaration
void SerializeJson(Utf8JsonWriter writer, JsonSerializerOptions options, bool includeStartObject)
Parameters
Type Name Description
Utf8JsonWriter writer
JsonSerializerOptions options
System.Boolean includeStartObject
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX