Class FhirCapabiltyStatement.ValWithExpectation<T>
A value with a conformance expectation.
Inheritance
System.Object
FhirCapabiltyStatement.ValWithExpectation<T>
Implements
System.IEquatable<FhirCapabiltyStatement.ValWithExpectation<T>>
Namespace: Microsoft.Health.Fhir.CodeGenCommon.Models
Assembly: Microsoft.Health.Fhir.CodeGenCommon.dll
Syntax
public class ValWithExpectation<T> : object
Type Parameters
| Name | Description |
|---|---|
| T |
Constructors
| Improve this Doc View SourceValWithExpectation(T, String, FhirCapabiltyStatement.ExpectationCodes)
A value with a conformance expectation.
Declaration
public ValWithExpectation(T Value, string ExpectationLiteral, FhirCapabiltyStatement.ExpectationCodes ExpectationCode)
Parameters
| Type | Name | Description |
|---|---|---|
| T | Value | The value. |
| System.String | ExpectationLiteral | The expectation literal. |
| FhirCapabiltyStatement.ExpectationCodes | ExpectationCode | The expectation code. |
Properties
| Improve this Doc View SourceExpectationCode
Declaration
public FhirCapabiltyStatement.ExpectationCodes ExpectationCode { get; set; }
Property Value
| Type | Description |
|---|---|
| FhirCapabiltyStatement.ExpectationCodes |
ExpectationLiteral
Declaration
public string ExpectationLiteral { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Value
Declaration
public T Value { get; set; }
Property Value
| Type | Description |
|---|---|
| T |
Implements
System.IEquatable<>