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