1 type derived from RegexRunnerFactory
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Symbolic\SymbolicRegexRunnerFactory.cs (1)
9
internal 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)
9
internal sealed class CompiledRegexRunnerFactory(DynamicMethod scanMethod, object[]? searchValues, CultureInfo? culture) :
RegexRunnerFactory
System\Text\RegularExpressions\Regex.cs (2)
27
protected internal
RegexRunnerFactory
? factory; // Factory used to create runner instances for executing the regex
218
private static
RegexRunnerFactory
? Compile(string pattern, RegexTree regexTree, RegexOptions options, bool hasTimeout) =>
System\Text\RegularExpressions\RegexAssemblyCompiler.cs (1)
69
TypeBuilder regexRunnerFactoryTypeBuilder = DefineType(_module, $"{name}Factory{typenumString}", isPublic: false, isSealed: true, typeof(
RegexRunnerFactory
));
System\Text\RegularExpressions\RegexCompiler.cs (1)
137
internal 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>
11
internal sealed class RegexInterpreterFactory(RegexTree tree) :
RegexRunnerFactory
System\Text\RegularExpressions\RegexLWCGCompiler.cs (1)
35
public
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>