6 references to StartsWithSegments
IIS.Microbenchmarks (1)
PlaintextBenchmark.cs (1)
56
if (httpContext.Request.Path.
StartsWithSegments
(_path, StringComparison.Ordinal))
Microsoft.AspNetCore.Http.Abstractions (1)
PathString.cs (1)
223
return
StartsWithSegments
(other, StringComparison.OrdinalIgnoreCase);
Microsoft.AspNetCore.Http.Abstractions.Tests (2)
PathStringTests.cs (2)
193
var result = source.
StartsWithSegments
(test, comparison);
214
var result = source.
StartsWithSegments
(test, comparison);
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (2)
InMemoryTransportBenchmark.cs (1)
251
if (httpContext.Request.Path.
StartsWithSegments
(_path, StringComparison.Ordinal))
NamedPipesTransportBenchmark.cs (1)
149
if (httpContext.Request.Path.
StartsWithSegments
(_path, StringComparison.Ordinal))