IISServerOptions 类

定义

为 IIS 进程内提供配置。

public ref class IISServerOptions
public class IISServerOptions
type IISServerOptions = class
Public Class IISServerOptions
继承
IISServerOptions

构造函数

IISServerOptions()

为 IIS 进程内提供配置。

属性

AllowSynchronousIO

获取或设置一个值,该值控制是否允许 和 使用 Request 同步 IO Response

AuthenticationDisplayName

设置在登录页上向用户显示的显示名。 默认值为 NULL。

AutomaticAuthentication

如果为 true,则服务器应设置 HttpContext.User。 如果为 false,则服务器仅在 AuthenticationScheme 显式请求时提供标识。 注意 还必须在 IIS 中启用 Windows 身份验证才能正常工作。

MaxRequestBodyBufferSize

获取或设置服务器为传入请求正文缓冲的最大未用量传入字节数。

MaxRequestBodySize

获取或设置任何请求正文允许的最大大小(以字节为单位)。 如果设置为 null,则最大请求长度不会在 ASP.NET Core中受到限制。 但是,默认情况下,IIS maxAllowedContentLength 仍将限制内容长度请求 (30,000,000) 。 此限制对升级的连接没有影响,这些连接始终不受限制。 这可以通过 按请求 IHttpMaxRequestBodySizeFeature重写。

适用于