XmlDocument.LoadXmlFromBuffer 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.
Overloads
LoadXmlFromBuffer(IBuffer) |
Loads an XML document using the buffer. The document is parsed using the default parser settings. |
LoadXmlFromBuffer(IBuffer, XmlLoadSettings) |
Loads an XML document using the buffer. The document is parsed using the settings provided. |
LoadXmlFromBuffer(IBuffer)
Loads an XML document using the buffer. The document is parsed using the default parser settings.
public:
virtual void LoadXmlFromBuffer(IBuffer ^ buffer) = LoadXmlFromBuffer;
/// [Windows.Foundation.Metadata.Overload("LoadXmlFromBuffer")]
void LoadXmlFromBuffer(IBuffer const& buffer);
[Windows.Foundation.Metadata.Overload("LoadXmlFromBuffer")]
public void LoadXmlFromBuffer(IBuffer buffer);
function loadXmlFromBuffer(buffer)
Public Sub LoadXmlFromBuffer (buffer As IBuffer)
Parameters
- buffer
- IBuffer
The buffer to load into this XML document object. This buffer can contain an entire XML document or a well-formed fragment.
- Attributes
See also
Applies to
LoadXmlFromBuffer(IBuffer, XmlLoadSettings)
Loads an XML document using the buffer. The document is parsed using the settings provided.
public:
virtual void LoadXmlFromBuffer(IBuffer ^ buffer, XmlLoadSettings ^ loadSettings) = LoadXmlFromBuffer;
/// [Windows.Foundation.Metadata.Overload("LoadXmlFromBufferWithSettings")]
void LoadXmlFromBuffer(IBuffer const& buffer, XmlLoadSettings const& loadSettings);
[Windows.Foundation.Metadata.Overload("LoadXmlFromBufferWithSettings")]
public void LoadXmlFromBuffer(IBuffer buffer, XmlLoadSettings loadSettings);
function loadXmlFromBuffer(buffer, loadSettings)
Public Sub LoadXmlFromBuffer (buffer As IBuffer, loadSettings As XmlLoadSettings)
Parameters
- buffer
- IBuffer
The buffer to load into this XML document object. This buffer can contain an entire XML document or a well-formed fragment.
- loadSettings
- XmlLoadSettings
The settings for parsing the document.
- Attributes