XamlReader.Parse Méthode

Définition

Lit le balisage dans la chaîne de texte spécifiée et retourne un objet qui correspond à la racine du balisage indiqué.

Surcharges

Parse(String, ParserContext)

Lit le balisage XAML dans la chaîne de texte spécifiée (à l'aide d'un ParserContext spécifié) et retourne un objet qui correspond à la racine du balisage indiqué.

Parse(String)

Lit l'entrée XAML dans la chaîne de texte spécifiée et retourne un objet qui correspond à la racine du balisage indiqué.

Parse(String, Boolean)
Parse(String, ParserContext, Boolean)

Parse(String, ParserContext)

Lit le balisage XAML dans la chaîne de texte spécifiée (à l'aide d'un ParserContext spécifié) et retourne un objet qui correspond à la racine du balisage indiqué.

public:
 static System::Object ^ Parse(System::String ^ xamlText, System::Windows::Markup::ParserContext ^ parserContext);
public static object Parse (string xamlText, System.Windows.Markup.ParserContext parserContext);
static member Parse : string * System.Windows.Markup.ParserContext -> obj
Public Shared Function Parse (xamlText As String, parserContext As ParserContext) As Object

Paramètres

xamlText
String

XAML d'entrée, en tant que chaîne de texte unique.

parserContext
ParserContext

Informations de contexte utilisées par l'analyseur.

Retours

Racine de l'arborescence d'objets créée.

Remarques

L’implémentation appelle Load en interne après avoir créé un flux à partir de la chaîne. Consultez Load pour plus d’informations, telles que les exceptions possibles.

S’applique à

Parse(String)

Lit l'entrée XAML dans la chaîne de texte spécifiée et retourne un objet qui correspond à la racine du balisage indiqué.

public:
 static System::Object ^ Parse(System::String ^ xamlText);
public static object Parse (string xamlText);
static member Parse : string -> obj
Public Shared Function Parse (xamlText As String) As Object

Paramètres

xamlText
String

XAML d'entrée, en tant que chaîne de texte unique.

Retours

Racine de l'arborescence d'objets créée.

Remarques

L’implémentation appelle Load en interne après avoir créé un flux à partir de la chaîne. Consultez Load pour plus d’informations, telles que les exceptions possibles.

S’applique à

Parse(String, Boolean)

public:
 static System::Object ^ Parse(System::String ^ xamlText, bool useRestrictiveXamlReader);
public static object Parse (string xamlText, bool useRestrictiveXamlReader);
static member Parse : string * bool -> obj
Public Shared Function Parse (xamlText As String, useRestrictiveXamlReader As Boolean) As Object

Paramètres

xamlText
String
useRestrictiveXamlReader
Boolean

Retours

S’applique à

Parse(String, ParserContext, Boolean)

public:
 static System::Object ^ Parse(System::String ^ xamlText, System::Windows::Markup::ParserContext ^ parserContext, bool useRestrictiveXamlReader);
public static object Parse (string xamlText, System.Windows.Markup.ParserContext parserContext, bool useRestrictiveXamlReader);
static member Parse : string * System.Windows.Markup.ParserContext * bool -> obj
Public Shared Function Parse (xamlText As String, parserContext As ParserContext, useRestrictiveXamlReader As Boolean) As Object

Paramètres

xamlText
String
parserContext
ParserContext
useRestrictiveXamlReader
Boolean

Retours

S’applique à