From 601937019ee23fd194a40e318a61b4a9c186724d Mon Sep 17 00:00:00 2001 From: Michael Bowen <10384982+mikeebowen@users.noreply.github.com> Date: Thu, 27 Mar 2025 13:36:14 -0700 Subject: [PATCH] use correct definitions from the XmlWriterSettings --- .../OpenXmlPartWriterSettings.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs b/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs index 92cea3f4d..88e076308 100644 --- a/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs +++ b/src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs @@ -6,24 +6,24 @@ namespace DocumentFormat.OpenXml; /// -/// Settings for the OpenXmlPartWriter. +/// Settings for the . /// public class OpenXmlPartWriterSettings { #if FEATURE_ASYNC_SAX_XML /// - /// Gets or sets a value indicating whether asynchronous OpenXmlPartWriter methods can be used. + /// Gets or sets a value indicating whether asynchronous methods can be used. /// public bool Async { get; set; } #endif /// - /// Gets or sets a value indicating whether the OpenXmlPartWriter should check to ensure that all characters in the document conform to the "2.2 Characters" section of the W3C XML 1.0 Recommendation. + /// Gets or sets a value indicating whether the should also close the underlying stream or TextWriter when the Close() method is called. /// public bool CloseOutput { get; set; } /// - /// Gets or sets a value indicating whether the OpenXmlPartWriter should also close the underlying stream or TextWriter when the Close() method is called. + /// Gets or sets the type of text encoding to use. /// public Encoding Encoding { get; set; } = Encoding.UTF8; }