Class ExternalLoginToken
Used to persist an external login token for a user
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Security
Assembly: Umbraco.Core.dll
Syntax
public class ExternalLoginToken : IExternalLoginToken
Constructors
View SourceExternalLoginToken(String, String, String)
Initializes a new instance of the ExternalLoginToken class.
Declaration
public ExternalLoginToken(string loginProvider, string name, string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | loginProvider | |
System.String | name | |
System.String | value |
Properties
View SourceLoginProvider
Gets the login provider
Declaration
public string LoginProvider { get; }
Property Value
Type | Description |
---|---|
System.String |
Name
Gets the name of the token
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Value
Gets the value of the token
Declaration
public string Value { get; }
Property Value
Type | Description |
---|---|
System.String |