HealthRecordItemExtension.ParseXml Method (Microsoft.Health)
Populates the extension data from the specified XML.
Declaration Syntax
Protected Overridable Sub ParseXml( _
ByVal extensionData As System.Xml.XPath.IXPathNavigable _
) protected virtual void ParseXml(
System.Xml.XPath.IXPathNavigable extensionData
); protected: virtual void ParseXml(
System.Xml.XPath.IXPathNavigable extensionData
); protected function ParseXml(
extensionData : System.Xml.XPath.IXPathNavigable
); Parameters
- extensionData
- The XML to retrieve the extension data from. Note, this may be an System.Xml.XmlDocument.
Remarks
Derived classes should override this method to parse the extension XML and populate class members with the data. The common extension attributes are handled by the base class before this method is called.The default implementation of this method does nothing.
