32 references to BackSlash
System.Text.Json (32)
System\Text\Json\Document\JsonDocument.cs (5)
368int idx = segment.IndexOf(JsonConstants.BackSlash); 415Debug.Assert(segment.IndexOf(JsonConstants.BackSlash) == -1); 684Debug.Assert(segment.IndexOf(JsonConstants.BackSlash) == -1); 719Debug.Assert(segment.IndexOf(JsonConstants.BackSlash) == -1); 754Debug.Assert(segment.IndexOf(JsonConstants.BackSlash) == -1);
System\Text\Json\Document\JsonDocument.TryGetProperty.cs (1)
174int idx = currentPropertyName.IndexOf(JsonConstants.BackSlash);
System\Text\Json\Reader\JsonReaderHelper.Unescaping.cs (12)
164int index1 = utf8Source1.IndexOf(JsonConstants.BackSlash); 165int index2 = utf8Source2.IndexOf(JsonConstants.BackSlash); 448int idx = source.IndexOf(JsonConstants.BackSlash); 458Debug.Assert(source[idx] == JsonConstants.BackSlash); 470int idx = source.IndexOf(JsonConstants.BackSlash); 482Debug.Assert(source[idx] == JsonConstants.BackSlash); 494Debug.Assert(source[idx] == JsonConstants.BackSlash); 512case JsonConstants.BackSlash: 513destination[written++] = JsonConstants.BackSlash; 592if (source[idx] != JsonConstants.BackSlash) 595int nextUnescapedSegmentLength = remaining.IndexOf(JsonConstants.BackSlash); 628Debug.Assert(idx == source.Length || source[idx] == JsonConstants.BackSlash);
System\Text\Json\Reader\Utf8JsonReader.cs (4)
620int idx = localSpan.IndexOf(JsonConstants.BackSlash); 654int idx = span.IndexOf(JsonConstants.BackSlash); 1328Debug.Assert(data[idx] == JsonConstants.BackSlash || data[idx] < JsonConstants.Space); 1347else if (currentByte == JsonConstants.BackSlash)
System\Text\Json\Reader\Utf8JsonReader.MultiSegment.cs (3)
845else if (currentByte == JsonConstants.BackSlash) 957Debug.Assert(data[idx] == JsonConstants.BackSlash || data[idx] < JsonConstants.Space); 982else if (currentByte == JsonConstants.BackSlash)
System\Text\Json\Reader\Utf8JsonReader.TryGet.cs (5)
46Debug.Assert(span.IndexOf(JsonConstants.BackSlash) == -1); 841Debug.Assert(span.IndexOf(JsonConstants.BackSlash) == -1); 1277Debug.Assert(span.IndexOf(JsonConstants.BackSlash) == -1); 1342Debug.Assert(span.IndexOf(JsonConstants.BackSlash) == -1); 1408Debug.Assert(span.IndexOf(JsonConstants.BackSlash) == -1);
System\Text\Json\Writer\JsonWriterHelper.Escaping.cs (2)
176case JsonConstants.BackSlash: 296case JsonConstants.BackSlash: