Class FhirExpando
Represents an object with members that can be dynamically added and removed at runtime. This implementation has modifications to support FHIR. Based off the DotNet ExpandoObject: https://github.com/Microsoft/referencesource/blob/master/System.Core/Microsoft/Scripting/Actions/ExpandoObject.cs
Inheritance
Implements
Namespace: Microsoft.Health.Fhir.SpecManager.Models
Assembly: Microsoft.Health.Fhir.SpecManager.dll
Syntax
public class FhirExpando : IDynamicMetaObjectProvider
Constructors
| Improve this Doc View SourceFhirExpando()
Initializes a new instance of the Fhir
Declaration
public FhirExpando()
Properties
| Improve this Doc View SourceCount
Gets the number of elements contained in the System.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
System. |
IsReadOnly
Gets a value indicating whether the System.
Declaration
public bool IsReadOnly { get; }
Property Value
Type | Description |
---|---|
System. |
Item[String]
Gets or sets the element with the specified key.
Declaration
public object this[string key] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key of the element to get or set. |
Property Value
Type | Description |
---|---|
System. |
The element with the specified key. |
Item[String, String]
Gets or sets the element with the specified key.
Declaration
public object this[string key1, string key2] { get; set; }
Parameters
Type | Name | Description |
---|---|---|
System. |
key1 | The key of the element to get or set. |
System. |
key2 | The second key. |
Property Value
Type | Description |
---|---|
System. |
The element with the specified key. |
Keys
Gets an System.
Declaration
public ICollection<string> Keys { get; }
Property Value
Type | Description |
---|---|
ICollection<System. |
Values
Gets an System.
Declaration
public ICollection<object> Values { get; }
Property Value
Type | Description |
---|---|
ICollection<System. |
Methods
| Improve this Doc View SourceAdd(KeyValuePair<String, Object>)
Adds an item to the System.
Declaration
public void Add(KeyValuePair<string, object> item)
Parameters
Type | Name | Description |
---|---|---|
Key |
item | The object to add to the System. |
Add(String, Object)
Adds an element with the provided key and value to the System.
Declaration
public void Add(string key, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The object to use as the key of the element to add. |
System. |
value | The object to use as the value of the element to add. |
Clear()
Removes all items from the System.
Declaration
public void Clear()
Contains(KeyValuePair<String, Object>)
Determines whether the System.
Declaration
public bool Contains(KeyValuePair<string, object> item)
Parameters
Type | Name | Description |
---|---|---|
Key |
item | The object to locate in the System. |
Returns
Type | Description |
---|---|
System. |
true if |
ContainsKey(String)
Determines whether the System.
Declaration
public bool ContainsKey(string key)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key to locate in the System. |
Returns
Type | Description |
---|---|
System. |
true if the System. |
CopyTo(KeyValuePair<String, Object>[], Int32)
Copies the elements of the System.
Declaration
public void CopyTo(KeyValuePair<string, object>[] array, int arrayIndex)
Parameters
Type | Name | Description |
---|---|---|
Key |
array | The one-dimensional System. |
System. |
arrayIndex | The zero-based index in |
GetAllExtensions(String[])
Gets the extensions in this collection.
Declaration
public IEnumerable<FhirExpando> GetAllExtensions(params string[] relativePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
relativePath | A variable-length parameters list containing the relative path to the extension node, from this node. |
Returns
Type | Description |
---|---|
IEnumerable<Fhir |
An enumerator that allows foreach to be used to process the extensions in this collection. |
GetBool(String[])
Gets a bool.
Declaration
public bool? GetBool(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
The bool. |
GetByteArray(String[])
Gets byte array.
Declaration
public byte[] GetByteArray(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
An array of byte. |
GetDecimal(String[])
Gets a decimal.
Declaration
public decimal? GetDecimal(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
The decimal. |
GetEnumerator()
Returns an enumerator that iterates through the collection.
Declaration
public IEnumerator<KeyValuePair<string, object>> GetEnumerator()
Returns
Type | Description |
---|---|
IEnumerator<Key |
An enumerator that can be used to iterate through the collection. |
GetExpando(String[])
Gets an expando.
Declaration
public FhirExpando GetExpando(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
Fhir |
The expando. |
GetExpandoEnumerable(String[])
Gets the expando enumerables in this collection.
Declaration
public IEnumerable<FhirExpando> GetExpandoEnumerable(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
IEnumerable<Fhir |
An enumerator that allows foreach to be used to process the expando enumerables in this collection. |
GetExtension(String, String[])
Gets the first extension.
Declaration
public FhirExpando GetExtension(string url, params string[] relativePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
relativePath | A variable-length parameters list containing the relative path to the extension node, from this node. |
Returns
Type | Description |
---|---|
Fhir |
The first extension. |
GetExtensions(String, String[])
Gets the extensions in this collection.
Declaration
public IEnumerable<FhirExpando> GetExtensions(string url, params string[] relativePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
relativePath | A variable-length parameters list containing the relative path to the extension node, from this node. |
Returns
Type | Description |
---|---|
IEnumerable<Fhir |
An enumerator that allows foreach to be used to process the extensions in this collection. |
GetExtensionsValueString(String, String[])
Declaration
public string[] GetExtensionsValueString(string url, params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | |
System. |
path |
Returns
Type | Description |
---|---|
System. |
GetExtensionValueCode(String, String[])
Gets extension valueCode.
Declaration
public string GetExtensionValueCode(string url, params string[] relativePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
relativePath | A variable-length parameters list containing the relative path to the extension node, from this node. |
Returns
Type | Description |
---|---|
System. |
The extension value. |
GetExtensionValueCodeArray(String, String[])
Gets extension value code array.
Declaration
public string[] GetExtensionValueCodeArray(string url, params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
An array of string. |
GetExtensionValueCodeList(String, String[])
Gets extension value code list.
Declaration
public List<string> GetExtensionValueCodeList(string url, params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
List<System. |
The extension value code list. |
GetExtensionValueInteger(String, String[])
Gets extension value integer.
Declaration
public int? GetExtensionValueInteger(string url, params string[] relativePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
relativePath | A variable-length parameters list containing the relative path to the extension node, from this node. |
Returns
Type | Description |
---|---|
System. |
The extension value integer. |
GetExtensionValueString(String, String[])
Gets extension value string.
Declaration
public string GetExtensionValueString(string url, params string[] relativePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
relativePath | A variable-length parameters list containing the relative path to the extension node, from this node. |
Returns
Type | Description |
---|---|
System. |
The extension value string. |
GetExtensionValueStringArray(String, String[])
Gets extension value string array.
Declaration
public string[] GetExtensionValueStringArray(string url, params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
url | URL of the resource. |
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
An array of string. |
GetInt(String[])
Gets an int.
Declaration
public int? GetInt(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
The int. |
GetLong(String[])
Gets a long.
Declaration
public long? GetLong(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
The long. |
GetObject(String[])
Gets a string.
Declaration
public object GetObject(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
The string. |
GetString(String[])
Gets a string.
Declaration
public string GetString(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
The string. |
GetStringArray(String[])
Gets string array.
Declaration
public string[] GetStringArray(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
System. |
An array of byte. |
GetStringList(String[])
Gets string list.
Declaration
public List<string> GetStringList(params string[] path)
Parameters
Type | Name | Description |
---|---|---|
System. |
path | A variable-length parameters list containing path. |
Returns
Type | Description |
---|---|
List<System. |
The string list. |
Remove(KeyValuePair<String, Object>)
Removes the first occurrence of a specific object from the System.
Declaration
public bool Remove(KeyValuePair<string, object> item)
Parameters
Type | Name | Description |
---|---|---|
Key |
item | The object to remove from the System. |
Returns
Type | Description |
---|---|
System. |
true if |
Remove(String)
Removes the element with the specified key from the System.
Declaration
public bool Remove(string key)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key of the element to remove. |
Returns
Type | Description |
---|---|
System. |
true if the element is successfully removed; otherwise, false
. This method also returns false if |
TryGetValue(String, out Object)
Gets the value associated with the specified key.
Declaration
public bool TryGetValue(string key, out object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key whose value to get. |
System. |
value | [out] When this method returns, the value associated with the specified
key, if the key is found; otherwise, the default value for the type of the |
Returns
Type | Description |
---|---|
System. |
true if the object that implements System. |