11 references to CarriageReturn
System.Text.Json (11)
System\Text\Json\Reader\JsonReaderHelper.Unescaping.cs (1)
510
destination[written++] = JsonConstants.
CarriageReturn
;
System\Text\Json\Reader\Utf8JsonReader.cs (3)
1017
not JsonConstants.
CarriageReturn
and
2356
Debug.Assert(localBuffer[idx] == JsonConstants.
CarriageReturn
);
2407
int idx = localBuffer.IndexOfAny(JsonConstants.LineFeed, JsonConstants.
CarriageReturn
, JsonConstants.StartingByteOfNonStandardSeparator);
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (4)
2350
Debug.Assert(localBuffer[idx] == JsonConstants.
CarriageReturn
);
2428
int idx = localBuffer.IndexOfAny(JsonConstants.LineFeed, JsonConstants.
CarriageReturn
, JsonConstants.StartingByteOfNonStandardSeparator);
2539
int idx = localBuffer.IndexOfAny(JsonConstants.Asterisk, JsonConstants.LineFeed, JsonConstants.
CarriageReturn
);
2560
Debug.Assert(marker == JsonConstants.
CarriageReturn
);
System\Text\Json\Writer\JsonWriterHelper.Escaping.cs (2)
170
case JsonConstants.
CarriageReturn
:
290
case JsonConstants.
CarriageReturn
:
System\Text\Json\Writer\Utf8JsonWriter.cs (1)
1160
output[BytesPending++] = JsonConstants.
CarriageReturn
;