Remove display name for Negotiate and Ntlm

This commit is contained in:
Brennan 2015-12-10 10:19:13 -08:00
parent e62767ab9d
commit 41cd7bf45e
1 changed files with 2 additions and 4 deletions

View File

@ -28,13 +28,11 @@ namespace Microsoft.AspNet.IISPlatformHandler
{
new AuthenticationDescription()
{
AuthenticationScheme = IISPlatformHandlerDefaults.Negotiate,
DisplayName = IISPlatformHandlerDefaults.Negotiate
AuthenticationScheme = IISPlatformHandlerDefaults.Negotiate
},
new AuthenticationDescription()
{
AuthenticationScheme = IISPlatformHandlerDefaults.Ntlm,
DisplayName = IISPlatformHandlerDefaults.Ntlm
AuthenticationScheme = IISPlatformHandlerDefaults.Ntlm
}
};
}