XamlReader.Parse メソッド

定義

指定したテキスト文字列内のマークアップを読み取り、指定したマークアップのルートに対応するオブジェクトを返します。

オーバーロード

Parse(String, ParserContext)

指定したテキスト文字列 (指定した ParserContext を使用) 内の XAML マークアップを読み取り、指定したマークアップのルートに対応するオブジェクトを返します。

Parse(String)

指定したテキスト文字列内の XAML 入力を読み取り、指定したマークアップのルートに対応するオブジェクトを返します。

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

Parse(String, ParserContext)

指定したテキスト文字列 (指定した ParserContext を使用) 内の XAML マークアップを読み取り、指定したマークアップのルートに対応するオブジェクトを返します。

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

パラメーター

xamlText
String

単一のテキスト文字列としての入力 XAML。

parserContext
ParserContext

パーサーで使用するコンテキスト情報。

戻り値

作成されたオブジェクト ツリーのルート。

注釈

実装は、文字列からストリームを作成した後に内部的に を呼び出 Load します。 可能な例外などの追加情報については、以下を参照してください Load

適用対象

Parse(String)

指定したテキスト文字列内の XAML 入力を読み取り、指定したマークアップのルートに対応するオブジェクトを返します。

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

パラメーター

xamlText
String

単一のテキスト文字列としての入力 XAML。

戻り値

作成されたオブジェクト ツリーのルート。

注釈

実装は、文字列からストリームを作成した後に内部的に を呼び出 Load します。 可能な例外などの追加情報については、以下を参照してください Load

適用対象

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

パラメーター

xamlText
String
useRestrictiveXamlReader
Boolean

戻り値

適用対象

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

パラメーター

xamlText
String
parserContext
ParserContext
useRestrictiveXamlReader
Boolean

戻り値

適用対象