1 write to _allowedBmpCodePoints
System.Text.Encodings.Web (1)
System\Text\Encodings\Web\OptimizedInboxTextEncoder.cs (1)
39_allowedBmpCodePoints = allowedCodePointsBmp;
17 references to _allowedBmpCodePoints
System.Text.Encodings.Web (17)
System\Text\Encodings\Web\OptimizedInboxTextEncoder.cs (17)
51_allowedBmpCodePoints.ForbidUndefinedCharacters(); 59_allowedBmpCodePoints.ForbidHtmlCharacters(); 64_allowedBmpCodePoints.ForbidChar(ch); 69_asciiPreescapedData.PopulatePreescapedData(_allowedBmpCodePoints, scalarEscaper); 79if (_allowedBmpCodePoints.IsCharAllowed((char)i)) 104if (_allowedBmpCodePoints.IsCodePointAllowed((uint)unicodeScalar)) 388if (!_allowedBmpCodePoints.IsCharAllowed((char)scalarValue.Value)) { break; } // disallowed code point 421if (!_allowedBmpCodePoints.IsCharAllowed(data[0])) { goto Return; } 422if (!_allowedBmpCodePoints.IsCharAllowed(data[1])) { idx += 1; goto Return; } 423if (!_allowedBmpCodePoints.IsCharAllowed(data[2])) { idx += 2; goto Return; } 424if (!_allowedBmpCodePoints.IsCharAllowed(data[3])) { idx += 3; goto Return; } 425if (!_allowedBmpCodePoints.IsCharAllowed(data[4])) { idx += 4; goto Return; } 426if (!_allowedBmpCodePoints.IsCharAllowed(data[5])) { idx += 5; goto Return; } 427if (!_allowedBmpCodePoints.IsCharAllowed(data[6])) { idx += 6; goto Return; } 428if (!_allowedBmpCodePoints.IsCharAllowed(data[7])) { idx += 7; goto Return; } 435if (!_allowedBmpCodePoints.IsCharAllowed(c)) { goto Return; } 452return _allowedBmpCodePoints.IsCodePointAllowed((uint)value.Value);