Make IISDefaults.AuthenticationScheme const (#4342)

This commit is contained in:
Pavel Krymets 2018-11-30 15:23:02 -08:00 committed by GitHub
parent 2b8c3db3b0
commit 03d3e1868e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View File

@ -5,7 +5,7 @@ namespace Microsoft.AspNetCore.Server.IISIntegration
{
public class IISDefaults
{
public static readonly string AuthenticationScheme = "Windows";
public const string AuthenticationScheme = "Windows";
public const string Negotiate = "Negotiate";
public const string Ntlm = "NTLM";
}

View File

@ -0,0 +1,7 @@
[
{
"TypeId": "public class Microsoft.AspNetCore.Server.IISIntegration.IISDefaults",
"MemberId": "public static readonly System.String AuthenticationScheme",
"Kind": "Removal"
}
]