Name | Description |
---|---|
x.UseHttpSys(state)
Signature:
state:ApplicationState -> ApplicationState
CE Custom Operation:
use_httpsys
|
HTTP.sys is a web server for ASP.NET Core that only runs on Windows. HTTP.sys is an alternative to Kestrel server and offers some features that Kestrel doesn't provide. (https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/httpsys) This operation switches hosting to the HTTP.sys server. |
x.UseHttpSysWithConfig(state, config)
Signature:
(state:ApplicationState * config:Action
CE Custom Operation:
use_httpsys_with_config
|
HTTP.sys is a web server for ASP.NET Core that only runs on Windows. HTTP.sys is an alternative to Kestrel server and offers some features that Kestrel doesn't provide. (https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/httpsys) This operation switches hosting to the HTTP.sys server and takes additional config. |
x.UserHttpSysWindowsAuth(state, allowAnonymous)
Signature:
(state:ApplicationState * allowAnonymous:bool) -> ApplicationState
CE Custom Operation:
use_httpsys_windows_auth
|
HTTP.sys is a web server for ASP.NET Core that only runs on Windows. HTTP.sys is an alternative to Kestrel server and offers some features that Kestrel doesn't provide. (https://docs.microsoft.com/en-us/aspnet/core/fundamentals/servers/httpsys) This operation switches hosting to the HTTP.sys server and enables Windows Auth (NTLM/Negotiate). |