This repository was archived by the owner on Nov 20, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed
src/Microsoft.AspNet.Http.Abstractions/Authentication Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 4
4
using System ;
5
5
using System . Collections . Generic ;
6
6
using System . Globalization ;
7
- using Microsoft . Framework . Internal ;
8
7
9
8
namespace Microsoft . AspNet . Http . Authentication
10
9
{
@@ -13,7 +12,7 @@ namespace Microsoft.AspNet.Http.Authentication
13
12
/// </summary>
14
13
public class AuthenticationDescription
15
14
{
16
- private const string CaptionPropertyKey = "Caption " ;
15
+ private const string DisplayNamePropertyKey = "DisplayName " ;
17
16
private const string AuthenticationSchemePropertyKey = "AuthenticationScheme" ;
18
17
19
18
/// <summary>
@@ -50,10 +49,10 @@ public string AuthenticationScheme
50
49
/// <summary>
51
50
/// Gets or sets the display name for the authentication provider.
52
51
/// </summary>
53
- public string Caption
52
+ public string DisplayName
54
53
{
55
- get { return GetString ( CaptionPropertyKey ) ; }
56
- set { Items [ CaptionPropertyKey ] = value ; }
54
+ get { return GetString ( DisplayNamePropertyKey ) ; }
55
+ set { Items [ DisplayNamePropertyKey ] = value ; }
57
56
}
58
57
59
58
private string GetString ( string name )
You can’t perform that action at this time.
0 commit comments