XmlDocument.LoadXml Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
LoadXml(String) |
Charge un document XML à l’aide de la chaîne fournie. Le document est analysé à l’aide des paramètres d’analyseur par défaut. |
LoadXml(String, XmlLoadSettings) |
Charge un document XML à l’aide de la chaîne fournie. Le document est analysé à l’aide des paramètres fournis. |
LoadXml(String)
Charge un document XML à l’aide de la chaîne fournie. Le document est analysé à l’aide des paramètres d’analyseur par défaut.
public:
virtual void LoadXml(Platform::String ^ xml) = LoadXml;
/// [Windows.Foundation.Metadata.Overload("LoadXml")]
void LoadXml(winrt::hstring const& xml);
[Windows.Foundation.Metadata.Overload("LoadXml")]
public void LoadXml(string xml);
function loadXml(xml)
Public Sub LoadXml (xml As String)
Paramètres
- xml
-
String
Platform::String
winrt::hstring
Chaîne XML à charger dans cet objet de document XML. Cette chaîne peut contenir un document XML entier ou un fragment correctement formé.
- Attributs
Voir aussi
S’applique à
LoadXml(String, XmlLoadSettings)
Charge un document XML à l’aide de la chaîne fournie. Le document est analysé à l’aide des paramètres fournis.
public:
virtual void LoadXml(Platform::String ^ xml, XmlLoadSettings ^ loadSettings) = LoadXml;
/// [Windows.Foundation.Metadata.Overload("LoadXmlWithSettings")]
void LoadXml(winrt::hstring const& xml, XmlLoadSettings const& loadSettings);
[Windows.Foundation.Metadata.Overload("LoadXmlWithSettings")]
public void LoadXml(string xml, XmlLoadSettings loadSettings);
function loadXml(xml, loadSettings)
Public Sub LoadXml (xml As String, loadSettings As XmlLoadSettings)
Paramètres
- xml
-
String
Platform::String
winrt::hstring
Chaîne XML à charger dans cet objet de document XML. Cette chaîne peut contenir un document XML entier ou un fragment correctement formé.
- loadSettings
- XmlLoadSettings
Paramètres d’analyse du document.
- Attributs