XmlDataDocument.GetRowFromElement(XmlElement) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the DataRow associated with the specified XmlElement.
public:
System::Data::DataRow ^ GetRowFromElement(System::Xml::XmlElement ^ e);
public System.Data.DataRow? GetRowFromElement(System.Xml.XmlElement? e);
public System.Data.DataRow GetRowFromElement(System.Xml.XmlElement e);
member this.GetRowFromElement : System.Xml.XmlElement -> System.Data.DataRow
Public Function GetRowFromElement (e As XmlElement) As DataRow
Parameters
The XmlElement
whose associated DataRow
you want to retrieve.
Returns
The DataRow
containing a representation of the XmlElement
; null
if there is no DataRow
associated with the XmlElement
.