Class FromR2
Convert FHIR R2 into local definitions.
Inheritance
Implements
Namespace: Microsoft.Health.Fhir.SpecManager.Converters
Assembly: Microsoft.Health.Fhir.SpecManager.dll
Syntax
public sealed class FromR2 : object, IFhirConverter
Constructors
| Improve this Doc View SourceFromR2()
Initializes a new instance of the From
Declaration
public FromR2()
Methods
| Improve this Doc View SourceDisplayIssues()
Displays the issues.
Declaration
public void DisplayIssues()
HasIssues(out Int32, out Int32)
Query if this object has issues.
Declaration
public bool HasIssues(out int errorCount, out int warningCount)
Parameters
Type | Name | Description |
---|---|---|
System. |
errorCount | [out] Number of errors. |
System. |
warningCount | [out] Number of warnings. |
Returns
Type | Description |
---|---|
System. |
True if issues, false if not. |
ProcessResource(Object, IPackageImportable)
Attempts to process resource.
Declaration
public void ProcessResource(object resourceToParse, IPackageImportable fhirVersionInfo)
Parameters
Type | Name | Description |
---|---|---|
System. |
resourceToParse | The resource object. |
IPackage |
fhirVersionInfo | Information describing the FHIR version. |
ProcessResource(Object, IPackageImportable, out String, out FhirArtifactClassEnum)
Attempts to process resource.
Declaration
public void ProcessResource(object resourceToParse, IPackageImportable fhirVersionInfo, out string resourceCanonical, out FhirArtifactClassEnum artifactClass)
Parameters
Type | Name | Description |
---|---|---|
System. |
resourceToParse | The resource object. |
IPackage |
fhirVersionInfo | Information describing the FHIR version. |
System. |
resourceCanonical | Canonical URL of the processed resource, or string.Empty if not processed. |
Fhir |
artifactClass | Class of the resource parsed |
ReplaceValue(Object, String[], Object)
Replace a value in a parsed but not-yet processed resource
Declaration
public void ReplaceValue(object resource, string[] path, object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
resource | |
System. |
path | |
System. |
value |
Explicit Interface Implementations
| Improve this Doc View SourceIFhirConverter.TryGetFirstFromBundle(String, out Object, out String)
Attempts to get the first resource from a bundle.
Declaration
bool IFhirConverter.TryGetFirstFromBundle(string json, out object resource, out string resourceType)
Parameters
Type | Name | Description |
---|---|---|
System. |
json | The JSON. |
System. |
resource | [out]. |
System. |
resourceType | [out] Type of the resource. |
Returns
Type | Description |
---|---|
System. |
True if it succeeds, false if it fails. |
IFhirConverter.TryParseResource(String, out Object, out String)
Try to parse a resource object from the given string.
Declaration
bool IFhirConverter.TryParseResource(string json, out object resource, out string resourceType)
Parameters
Type | Name | Description |
---|---|---|
System. |
json | The JSON. |
System. |
resource | [out]. |
System. |
resourceType | [out] Type of the resource. |
Returns
Type | Description |
---|---|
System. |
A typed Resource object. |