Skip to content

Commit 4219646

Browse files
authored
Use correct definitions from the XmlWriterSettings (#1911)
1 parent ac4882d commit 4219646

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/DocumentFormat.OpenXml.Framework/OpenXmlPartWriterSettings.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,24 +6,24 @@
66
namespace DocumentFormat.OpenXml;
77

88
/// <summary>
9-
/// Settings for the OpenXmlPartWriter.
9+
/// Settings for the <see cref="OpenXmlPartWriter" /> .
1010
/// </summary>
1111
public class OpenXmlPartWriterSettings
1212
{
1313
#if FEATURE_ASYNC_SAX_XML
1414
/// <summary>
15-
/// Gets or sets a value indicating whether asynchronous OpenXmlPartWriter methods can be used.
15+
/// Gets or sets a value indicating whether asynchronous <see cref="OpenXmlPartWriter" /> methods can be used.
1616
/// </summary>
1717
public bool Async { get; set; }
1818
#endif
1919

2020
/// <summary>
21-
/// 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.
21+
/// Gets or sets a value indicating whether the <see cref="OpenXmlPartWriter" /> should also close the underlying stream or TextWriter when the Close() method is called.
2222
/// </summary>
2323
public bool CloseOutput { get; set; }
2424

2525
/// <summary>
26-
/// Gets or sets a value indicating whether the OpenXmlPartWriter should also close the underlying stream or TextWriter when the Close() method is called.
26+
/// Gets or sets the type of text encoding to use.
2727
/// </summary>
2828
public Encoding Encoding { get; set; } = Encoding.UTF8;
2929
}

0 commit comments

Comments
 (0)