14 references to WhitespaceChars
System.Xaml (14)
System\Xaml\Parser\GenericTypeNameScanner.cs (6)
357
Debug.Assert(KnownStrings.
WhitespaceChars
.Length == 5);
359
if (ch == KnownStrings.
WhitespaceChars
[0] ||
360
ch == KnownStrings.
WhitespaceChars
[1] ||
361
ch == KnownStrings.
WhitespaceChars
[2] ||
362
ch == KnownStrings.
WhitespaceChars
[3] ||
363
ch == KnownStrings.
WhitespaceChars
[4])
System\Xaml\Parser\MeScanner.cs (8)
506
result = result.TrimEnd(KnownStrings.
WhitespaceChars
);
507
result = result.TrimStart(KnownStrings.
WhitespaceChars
);
549
Debug.Assert(KnownStrings.
WhitespaceChars
.Length == 5);
551
if (ch == KnownStrings.
WhitespaceChars
[0] ||
552
ch == KnownStrings.
WhitespaceChars
[1] ||
553
ch == KnownStrings.
WhitespaceChars
[2] ||
554
ch == KnownStrings.
WhitespaceChars
[3] ||
555
ch == KnownStrings.
WhitespaceChars
[4])