1 type derived from RegexRunnerFactory
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexRunnerFactory.cs (1)
9internal sealed class SymbolicRegexRunnerFactory : RegexRunnerFactory
11 references to RegexRunnerFactory
netstandard (1)
netstandard.cs (1)
2056[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.RegexRunnerFactory))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
912[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Text.RegularExpressions.RegexRunnerFactory))]
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\CompiledRegexRunnerFactory.cs (1)
9internal sealed class CompiledRegexRunnerFactory(DynamicMethod scanMethod, object[]? searchValues, CultureInfo? culture) : RegexRunnerFactory
System\Text\RegularExpressions\Regex.cs (2)
27protected internal RegexRunnerFactory? factory; // Factory used to create runner instances for executing the regex 218private static RegexRunnerFactory? Compile(string pattern, RegexTree regexTree, RegexOptions options, bool hasTimeout) =>
System\Text\RegularExpressions\RegexAssemblyCompiler.cs (1)
69TypeBuilder regexRunnerFactoryTypeBuilder = DefineType(_module, $"{name}Factory{typenumString}", isPublic: false, isSealed: true, typeof(RegexRunnerFactory));
System\Text\RegularExpressions\RegexCompiler.cs (1)
134internal static RegexRunnerFactory? Compile(string pattern, RegexTree regexTree, RegexOptions options, bool hasTimeout) =>
System\Text\RegularExpressions\RegexInterpreter.cs (2)
10/// <summary>A <see cref="RegexRunnerFactory"/> for creating <see cref="RegexInterpreter"/>s.</summary> 11internal sealed class RegexInterpreterFactory(RegexTree tree) : RegexRunnerFactory
System\Text\RegularExpressions\RegexLWCGCompiler.cs (1)
35public RegexRunnerFactory? FactoryInstanceFromCode(string pattern, RegexTree regexTree, RegexOptions options, bool hasTimeout)
System\Text\RegularExpressions\Symbolic\SymbolicRegexRunnerFactory.cs (1)
8/// <summary><see cref="RegexRunnerFactory"/> for symbolic regexes.</summary>