Show / Hide Table of Contents

Class SampledData

A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.

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

Properties

| Improve this Doc View Source

_Data

Extension container element for Data

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

_Factor

Extension container element for Factor

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

_LowerLimit

Extension container element for LowerLimit

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

_Period

Extension container element for Period

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

_UpperLimit

Extension container element for UpperLimit

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

Data

A series of data points which are decimal values separated by a single space (character u20). The special values "E" (error), "L" (below detection limit) and "U" (above detection limit) can also be used in place of a decimal value.

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

Dimensions

The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once.

Declaration
public uint Dimensions { get; set; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

Factor

A correction factor that is applied to the sampled data points before they are added to the origin.

Declaration
public decimal? Factor { get; set; }
Property Value
Type Description
System.Nullable<System.Decimal>
| Improve this Doc View Source

LowerLimit

The lower limit of detection of the measured points. This is needed if any of the data points have the value "L" (lower than detection limit).

Declaration
public decimal? LowerLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Decimal>
| Improve this Doc View Source

Origin

The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series.

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

Period

The length of time between sampling times, measured in milliseconds.

Declaration
public decimal Period { get; set; }
Property Value
Type Description
System.Decimal
| Improve this Doc View Source

UpperLimit

The upper limit of detection of the measured points. This is needed if any of the data points have the value "U" (higher than detection limit).

Declaration
public decimal? UpperLimit { get; set; }
Property Value
Type Description
System.Nullable<System.Decimal>

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