4 references to CaseInsensitive
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\RegexInterpreter.cs (2)
859case RegexOpcode.Backreference | RegexOpcode.CaseInsensitive: 864if (!MatchRef(MatchIndex(capnum), MatchLength(capnum), inputSpan, (_operator & RegexOpcode.CaseInsensitive) != 0))
System\Text\RegularExpressions\RegexInterpreterCode.cs (1)
146if ((opcode & RegexOpcode.CaseInsensitive) != 0) sb.Append("-Ci");
System\Text\RegularExpressions\RegexWriter.cs (1)
210bits |= RegexOpcode.CaseInsensitive;