Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CommentHandling

JsonCommentHandling System.Text.Json.JsonDocumentOptions.CommentHandling
getset

Definition at line 9 of file JsonDocumentOptions.cs.

10 {
11 readonly get
12 {
13 return _commentHandling;
14 }
15 set
16 {
17 if ((int)value > 1)
18 {
19 throw new ArgumentOutOfRangeException("value", System.SR.JsonDocumentDoesNotSupportComments);
20 }
22 }
23 }
static string JsonDocumentDoesNotSupportComments
Definition SR.cs:88
Definition SR.cs:7

Referenced by System.Text.Json.JsonDocumentOptions.GetReaderOptions().