IISOptions Class

Namespace
Microsoft.AspNetCore.Builder
Assemblies
  • Microsoft.AspNetCore.Server.IISIntegration

Syntax

public class IISOptions
class Microsoft.AspNetCore.Builder.IISOptions

Properties

Microsoft.AspNetCore.Builder.IISOptions.AuthenticationDescriptions

Additional information about the authentication type which is made available to the application.

Return type:System.Collections.Generic.IList<Microsoft.AspNetCore.Http.Authentication.AuthenticationDescription>
public IList<AuthenticationDescription> AuthenticationDescriptions { get; }
Microsoft.AspNetCore.Builder.IISOptions.AutomaticAuthentication

If true the authentication middleware alter the request user coming in and respond to generic challenges. If false the authentication middleware will only provide identity and respond to challenges when explicitly indicated by the AuthenticationScheme.

Return type:System.Boolean
public bool AutomaticAuthentication { get; set; }
Microsoft.AspNetCore.Builder.IISOptions.ForwardClientCertificate

Populates the ITLSConnectionFeature if the MS-ASPNETCORE-CLIENTCERT request header is present.

Return type:System.Boolean
public bool ForwardClientCertificate { get; set; }
Microsoft.AspNetCore.Builder.IISOptions.ForwardWindowsAuthentication

If true authentication middleware will try to authenticate using platform handler windows authentication If false authentication middleware won’t be added

Return type:System.Boolean
public bool ForwardWindowsAuthentication { get; set; }