XamlXmlWriterSettings.CloseOutput 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指定 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
,则在进行 Dispose
或类似操作时,立即关闭 XamlXmlWriter。 如果为 false
,则在释放 XamlXmlWriter 之前写入剩余的缓冲区输出。 默认值为 false
。
注解
此设置会影响对基础或TextWriter何时true
CloseOutput调用Close
的逻辑XamlXmlWriter.Dispose;或者调用Flush (再次绑定到基础XmlWriterXmlWriter或TextWriter) (如果CloseOutput为)。false