Make IISDefaults.AuthenticationScheme const (#4342)
This commit is contained in:
parent
2b8c3db3b0
commit
03d3e1868e
|
|
@ -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";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,7 @@
|
|||
[
|
||||
{
|
||||
"TypeId": "public class Microsoft.AspNetCore.Server.IISIntegration.IISDefaults",
|
||||
"MemberId": "public static readonly System.String AuthenticationScheme",
|
||||
"Kind": "Removal"
|
||||
}
|
||||
]
|
||||
Loading…
Reference in New Issue