4 writes to AllowAlternateSchemes
InMemory.FunctionalTests (4)
Http2\Http2StreamTests.cs (2)
475
_serviceContext.ServerOptions.
AllowAlternateSchemes
= true;
512
_serviceContext.ServerOptions.
AllowAlternateSchemes
= true;
Http3\Http3StreamTests.cs (2)
297
_serviceContext.ServerOptions.
AllowAlternateSchemes
= true;
322
_serviceContext.ServerOptions.
AllowAlternateSchemes
= true;
4 references to AllowAlternateSchemes
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Internal\Http2\Http2Stream.cs (1)
302
if (!ServerOptions.
AllowAlternateSchemes
|| !Uri.CheckSchemeName(headerScheme))
Internal\Http3\Http3Stream.cs (1)
1064
if (!ServerOptions.
AllowAlternateSchemes
|| !Uri.CheckSchemeName(headerScheme))
KestrelServerOptions.cs (2)
345
writer.WritePropertyName(nameof(
AllowAlternateSchemes
));
346
writer.WriteBooleanValue(
AllowAlternateSchemes
);