Info
| Version: | 0.0.12 |
| Author(s): | pjlammertyn |
| Last Update: | Friday, February 13, 2015 |
| .NET Fiddle: | Create the first Fiddle |
| Project Url: | https://github.com/pjlammertyn/HL7toXDocumentParser |
| NuGet Url: | https://www.nuget.org/packages/HL7toXDocumentParser |
Install
Install-Package HL7toXDocumentParser
dotnet add package HL7toXDocumentParser
paket add HL7toXDocumentParser
HL7toXDocumentParser Download (Unzip the "nupkg" after downloading)
Dependencies
Tags
Example usage:
var parser = new HL7toXDocumentParser.Parser();
var xDoc = parser.Parse(hl7);
var messageType = (from elem in xDoc.Descendants("MSH.9.1") select elem.Value).FirstOrDefault();.