Class ExternalLoginToken
Supports all classes in the .NET class hierarchy and provides low-level services to derived classes. This is the ultimate base class of all .NET classes; it is the root of the type hierarchy.
Inheritance
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 |
|---|---|---|
| string | loginProvider | |
| string | name | |
| string | value |
Fields
View SourceTableName
Declaration
public const string TableName = "umbracoExternalLoginToken"
Field Value
| Type | Description |
|---|---|
| string |
Properties
View SourceLoginProvider
Gets the login provider
Declaration
public string LoginProvider { get; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Gets the name of the token
Declaration
public string Name { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
Gets the value of the token
Declaration
public string Value { get; }
Property Value
| Type | Description |
|---|---|
| string |