From 95ce16455602f561a028eb26c04f42ab9cfafede Mon Sep 17 00:00:00 2001 From: Ron Petrusha Date: Wed, 8 May 2019 10:11:47 -0700 Subject: [PATCH] Fixed broken xref in Utf8JSonWriter --- xml/System.Text.Json/Utf8JsonWriter.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xml/System.Text.Json/Utf8JsonWriter.xml b/xml/System.Text.Json/Utf8JsonWriter.xml index 5578516d590..87ae3610ea6 100644 --- a/xml/System.Text.Json/Utf8JsonWriter.xml +++ b/xml/System.Text.Json/Utf8JsonWriter.xml @@ -31,8 +31,10 @@ `Utf8JsonWriter` writes the text sequentially with no caching and by default adheres to the [JSON RFC](https://tools.ietf.org/html/rfc8259), with the exception of writing comments. A method that attempts to write invalid JSON when validation is enabled throws a with a context-specific error message. + Since this type is a ref struct, it does not directly support async. However, it does provide support for reentrancy to write partial data and to continue writing in chunks. -To be able to format the output with indentation and white space OR to skip validation, create an instance of and pass that in to the writer. + +To be able to format the output with indentation and white space OR to skip validation, create an instance of and pass it in to the writer. ]]>