Show / Hide Table of Contents

Class CompositionSection

The root of the sections that make up the composition.

Inheritance
System.Object
Element
BackboneElement
CompositionSection
Implements
IFhirJsonSerializable
Inherited Members
BackboneElement.ModifierExtension
Element.Extension
Element.Fhir_comments
Element._Fhir_comments
Element.Id
Element._Id
Namespace: fhirCsR2.Models
Assembly: fhirCsR2.dll
Syntax
public class CompositionSection : BackboneElement, IFhirJsonSerializable

Properties

| Improve this Doc View Source

_Mode

Extension container element for Mode

Declaration
public Element _Mode { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

_Title

Extension container element for Title

Declaration
public Element _Title { get; set; }
Property Value
Type Description
Element
| Improve this Doc View Source

Code

Provides computable standardized labels to topics within the document.

Declaration
public CodeableConcept Code { get; set; }
Property Value
Type Description
CodeableConcept
| Improve this Doc View Source

EmptyReason

Allows capturing things like "none exist" or "not asked" which can be important for most lists.

Declaration
public CodeableConcept EmptyReason { get; set; }
Property Value
Type Description
CodeableConcept
| Improve this Doc View Source

Entry

A reference to the actual resource from which the narrative in the section is derived.

Declaration
public List<Reference> Entry { get; set; }
Property Value
Type Description
fhirCsR2.Models.List<Reference>
| Improve this Doc View Source

Mode

Sections are used in various ways, and it must be known in what way it is safe to use the entries in them.

Declaration
public string Mode { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

OrderedBy

Important for presentation and rendering. Lists may be sorted to place more important information first or to group related entries.

Declaration
public CodeableConcept OrderedBy { get; set; }
Property Value
Type Description
CodeableConcept
| Improve this Doc View Source

Section

A nested sub-section within this section.

Declaration
public List<CompositionSection> Section { get; set; }
Property Value
Type Description
fhirCsR2.Models.List<CompositionSection>
| Improve this Doc View Source

Text

A human-readable narrative that contains the attested content of the section, used to represent the content of the resource to a human. The narrative need not encode all the structured data, but is required to contain sufficient detail to make it "clinically safe" for a human to just read the narrative.

Declaration
public Narrative Text { get; set; }
Property Value
Type Description
Narrative
| Improve this Doc View Source

Title

Section headings are often standardized for different types of documents. They give guidance to humans on how the document is organized.

Declaration
public string Title { get; set; }
Property Value
Type Description
System.String

Methods

| Improve this Doc View Source

DeserializeJson(ref Utf8JsonReader, JsonSerializerOptions)

Deserialize a JSON object

Declaration
public 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)

Deserialize a JSON property

Declaration
public 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
public void SerializeJson(Utf8JsonWriter writer, JsonSerializerOptions options, bool includeStartObject = true)
Parameters
Type Name Description
Utf8JsonWriter writer
JsonSerializerOptions options
System.Boolean includeStartObject

Implements

IFhirJsonSerializable
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX