Show / Hide Table of Contents

Class FhirConceptTreeNode

A fhir concept tree node.

Inheritance
System.Object
FhirConceptTreeNode
Namespace: Microsoft.Health.Fhir.CodeGenCommon.Models
Assembly: Microsoft.Health.Fhir.CodeGenCommon.dll
Syntax
public class FhirConceptTreeNode : object

Constructors

| Improve this Doc View Source

FhirConceptTreeNode(FhirConcept, FhirConceptTreeNode)

Initializes a new instance of the FhirConceptTreeNode class.

Declaration
public FhirConceptTreeNode(FhirConcept concept, FhirConceptTreeNode parent)
Parameters
Type Name Description
FhirConcept concept

The concept.

FhirConceptTreeNode parent

The parent.

Properties

| Improve this Doc View Source

Children

Gets the children.

Declaration
public Dictionary<string, FhirConceptTreeNode> Children { get; }
Property Value
Type Description
Dictionary<System.String, FhirConceptTreeNode>

The children.

| Improve this Doc View Source

Concept

Gets the concept.

Declaration
public FhirConcept Concept { get; }
Property Value
Type Description
FhirConcept

The concept.

| Improve this Doc View Source

IsRoot

Gets a value indicating whether this object is root.

Declaration
public bool IsRoot { get; }
Property Value
Type Description
System.Boolean

True if this object is root, false if not.

| Improve this Doc View Source

Parent

Gets the parent.

Declaration
public FhirConceptTreeNode Parent { get; }
Property Value
Type Description
FhirConceptTreeNode

The parent.

Methods

| Improve this Doc View Source

AddChild(FhirConcept)

Adds a node.

Declaration
public FhirConceptTreeNode AddChild(FhirConcept concept)
Parameters
Type Name Description
FhirConcept concept

The concept.

Returns
Type Description
FhirConceptTreeNode

A FhirConceptTreeNode.

  • Improve this Doc
  • View Source
In This Article
  • Constructors
    • FhirConceptTreeNode(FhirConcept, FhirConceptTreeNode)
  • Properties
    • Children
    • Concept
    • IsRoot
    • Parent
  • Methods
    • AddChild(FhirConcept)
Back to top Generated by DocFX