共用方式為


XamlXmlWriterSettings.CloseOutput 屬性

定義

取得或設定值,這個值指定 XamlXmlWriter 是否應該在 Dispose 或其他作業時立即關閉,或 XAML 寫入器是否應該在關閉之前寫入緩衝區。 請小心使用這個設定,立即關閉會導致 XAML 無效而無法重新載入。

public:
 property bool CloseOutput { bool get(); void set(bool value); };
public bool CloseOutput { get; set; }
member this.CloseOutput : bool with get, set
Public Property CloseOutput As Boolean

屬性值

如果在 true 或類似作業時立即關閉 XamlXmlWriter,則為 Dispose。 如果在釋放 XamlXmlWriter 之前寫入剩餘緩衝區輸出,則為 false。 預設為 false

備註

此設定會影響 在基礎 TextWriterXmlWriter 或 當 為 trueCloseOutput 呼叫 Close 的邏輯 XamlXmlWriter.Dispose ;如果 為 false ,則會再次呼叫 Flush (系結至基礎 XmlWriterTextWriter) CloseOutput

適用於