次の方法で共有


XamlXmlWriter コンストラクター

定義

XamlXmlWriter クラスの新しいインスタンスを初期化します。

オーバーロード

XamlXmlWriter(Stream, XamlSchemaContext)

ストリームから XamlXmlWriter クラスの新しいインスタンスを初期化します。

XamlXmlWriter(TextWriter, XamlSchemaContext)

XamlXmlWriter を基礎として TextWriter クラスの新しいインスタンスを初期化します。

XamlXmlWriter(XmlWriter, XamlSchemaContext)

XamlXmlWriter を基礎として XmlWriter クラスの新しいインスタンスを初期化します。

XamlXmlWriter(Stream, XamlSchemaContext, XamlXmlWriterSettings)

ライター設定オブジェクトを使用して、ストリームから XamlXmlWriter クラスの新しいインスタンスを初期化します。

XamlXmlWriter(TextWriter, XamlSchemaContext, XamlXmlWriterSettings)

設定オブジェクトを使用して、XamlXmlWriter を基礎として TextWriter クラスの新しいインスタンスを初期化します。

XamlXmlWriter(XmlWriter, XamlSchemaContext, XamlXmlWriterSettings)

設定オブジェクトを使用して、XamlXmlWriter を基礎として XmlWriter クラスの新しいインスタンスを初期化します。

XamlXmlWriter(Stream, XamlSchemaContext)

ストリームから XamlXmlWriter クラスの新しいインスタンスを初期化します。

public:
 XamlXmlWriter(System::IO::Stream ^ stream, System::Xaml::XamlSchemaContext ^ schemaContext);
public XamlXmlWriter (System.IO.Stream stream, System.Xaml.XamlSchemaContext schemaContext);
new System.Xaml.XamlXmlWriter : System.IO.Stream * System.Xaml.XamlSchemaContext -> System.Xaml.XamlXmlWriter
Public Sub New (stream As Stream, schemaContext As XamlSchemaContext)

パラメーター

stream
Stream

書き込むストリーム。

schemaContext
XamlSchemaContext

XAML ライターの XAML スキーマ コンテキスト。

例外

streamnullです。

または schemaContextnullです。

適用対象

XamlXmlWriter(TextWriter, XamlSchemaContext)

XamlXmlWriter を基礎として TextWriter クラスの新しいインスタンスを初期化します。

public:
 XamlXmlWriter(System::IO::TextWriter ^ textWriter, System::Xaml::XamlSchemaContext ^ schemaContext);
public XamlXmlWriter (System.IO.TextWriter textWriter, System.Xaml.XamlSchemaContext schemaContext);
new System.Xaml.XamlXmlWriter : System.IO.TextWriter * System.Xaml.XamlSchemaContext -> System.Xaml.XamlXmlWriter
Public Sub New (textWriter As TextWriter, schemaContext As XamlSchemaContext)

パラメーター

textWriter
TextWriter

出力を書き込む TextWriter

schemaContext
XamlSchemaContext

XAML ライターの XAML スキーマ コンテキスト。

例外

textWriter または schemaContextnull です。

適用対象

XamlXmlWriter(XmlWriter, XamlSchemaContext)

XamlXmlWriter を基礎として XmlWriter クラスの新しいインスタンスを初期化します。

public:
 XamlXmlWriter(System::Xml::XmlWriter ^ xmlWriter, System::Xaml::XamlSchemaContext ^ schemaContext);
public XamlXmlWriter (System.Xml.XmlWriter xmlWriter, System.Xaml.XamlSchemaContext schemaContext);
new System.Xaml.XamlXmlWriter : System.Xml.XmlWriter * System.Xaml.XamlSchemaContext -> System.Xaml.XamlXmlWriter
Public Sub New (xmlWriter As XmlWriter, schemaContext As XamlSchemaContext)

パラメーター

xmlWriter
XmlWriter

出力を書き込む XmlWriter

schemaContext
XamlSchemaContext

XAML ライターの XAML スキーマ コンテキスト。

例外

xmlWriter または schemaContextnull です。

適用対象

XamlXmlWriter(Stream, XamlSchemaContext, XamlXmlWriterSettings)

ライター設定オブジェクトを使用して、ストリームから XamlXmlWriter クラスの新しいインスタンスを初期化します。

public:
 XamlXmlWriter(System::IO::Stream ^ stream, System::Xaml::XamlSchemaContext ^ schemaContext, System::Xaml::XamlXmlWriterSettings ^ settings);
public XamlXmlWriter (System.IO.Stream stream, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlWriterSettings settings);
new System.Xaml.XamlXmlWriter : System.IO.Stream * System.Xaml.XamlSchemaContext * System.Xaml.XamlXmlWriterSettings -> System.Xaml.XamlXmlWriter
Public Sub New (stream As Stream, schemaContext As XamlSchemaContext, settings As XamlXmlWriterSettings)

パラメーター

stream
Stream

書き込むストリーム。

schemaContext
XamlSchemaContext

XAML ライターの XAML スキーマ コンテキスト。

settings
XamlXmlWriterSettings

通常は既定以外の固有の設定を持つ、XamlXmlWriterSettings のインスタンス。

例外

stream または schemaContextnull です。

注釈

インスタンスの構築後にオブジェクトの settings 値を XamlXmlWriter 変更しないでください。 XamlXmlWriter では、実行時に変更可能な設定値に基づいて内部設定を更新できません。 設定は初期化専用に指定する必要があります。 いずれかのコンストラクターシグネチャを使用してアクティブな XAML ライターから設定を XamlXmlWriterSettings マージできますが、既存の設定を調整するのではなく、新しい XAML ライター インスタンスにこれらの設定を適用する必要があります。

適用対象

XamlXmlWriter(TextWriter, XamlSchemaContext, XamlXmlWriterSettings)

設定オブジェクトを使用して、XamlXmlWriter を基礎として TextWriter クラスの新しいインスタンスを初期化します。

public:
 XamlXmlWriter(System::IO::TextWriter ^ textWriter, System::Xaml::XamlSchemaContext ^ schemaContext, System::Xaml::XamlXmlWriterSettings ^ settings);
public XamlXmlWriter (System.IO.TextWriter textWriter, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlWriterSettings settings);
new System.Xaml.XamlXmlWriter : System.IO.TextWriter * System.Xaml.XamlSchemaContext * System.Xaml.XamlXmlWriterSettings -> System.Xaml.XamlXmlWriter
Public Sub New (textWriter As TextWriter, schemaContext As XamlSchemaContext, settings As XamlXmlWriterSettings)

パラメーター

textWriter
TextWriter

出力を書き込む TextWriter

schemaContext
XamlSchemaContext

XAML ライターの XAML スキーマ コンテキスト。

settings
XamlXmlWriterSettings

通常は既定以外の固有の設定を持つ、XamlXmlWriterSettings のインスタンス。

例外

textWriter または schemaContextnull です。

注釈

インスタンスの構築後にオブジェクトの settings 値を XamlXmlWriter 変更しないでください。 XamlXmlWriter では、実行時に変更可能な設定値に基づいて内部設定を更新できません。 設定は初期化専用に指定する必要があります。 いずれかのコンストラクターシグネチャを使用してアクティブな XAML ライターから設定を XamlXmlWriterSettings マージできますが、既存の設定を調整するのではなく、新しい XAML ライター インスタンスにこれらの設定を適用する必要があります。

適用対象

XamlXmlWriter(XmlWriter, XamlSchemaContext, XamlXmlWriterSettings)

設定オブジェクトを使用して、XamlXmlWriter を基礎として XmlWriter クラスの新しいインスタンスを初期化します。

public:
 XamlXmlWriter(System::Xml::XmlWriter ^ xmlWriter, System::Xaml::XamlSchemaContext ^ schemaContext, System::Xaml::XamlXmlWriterSettings ^ settings);
public XamlXmlWriter (System.Xml.XmlWriter xmlWriter, System.Xaml.XamlSchemaContext schemaContext, System.Xaml.XamlXmlWriterSettings settings);
new System.Xaml.XamlXmlWriter : System.Xml.XmlWriter * System.Xaml.XamlSchemaContext * System.Xaml.XamlXmlWriterSettings -> System.Xaml.XamlXmlWriter
Public Sub New (xmlWriter As XmlWriter, schemaContext As XamlSchemaContext, settings As XamlXmlWriterSettings)

パラメーター

xmlWriter
XmlWriter

出力を書き込む XmlWriter

schemaContext
XamlSchemaContext

XAML ライターの XAML スキーマ コンテキスト。

settings
XamlXmlWriterSettings

通常は既定以外の固有の設定を持つ、XamlXmlWriterSettings のインスタンス。

例外

xmlWriter または schemaContextnull です。

注釈

インスタンスの構築後にオブジェクトの settings 値を XamlXmlWriter 変更しないでください。 XamlXmlWriter では、実行時に変更可能な設定値に基づいて内部設定を更新できません。 設定は初期化専用に指定する必要があります。 いずれかのコンストラクターシグネチャを使用してアクティブな XAML ライターから設定を XamlXmlWriterSettings マージできますが、既存の設定を調整するのではなく、新しい XAML ライター インスタンスにこれらの設定を適用する必要があります。

適用対象