Class ExternalLogin
Used to persist external login data for a user
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.Security
Assembly: Umbraco.Core.dll
Syntax
public class ExternalLogin : IExternalLogin
Constructors
View SourceExternalLogin(String, String, String)
Initializes a new instance of the ExternalLogin class.
Declaration
public ExternalLogin(string loginProvider, string providerKey, string userData = null)
Parameters
Type | Name | Description |
---|---|---|
System.String | loginProvider | |
System.String | providerKey | |
System.String | userData |
Properties
View SourceLoginProvider
Gets the login provider
Declaration
public string LoginProvider { get; }
Property Value
Type | Description |
---|---|
System.String |
ProviderKey
Gets the provider key
Declaration
public string ProviderKey { get; }
Property Value
Type | Description |
---|---|
System.String |
UserData
Gets the user data
Declaration
public string UserData { get; }
Property Value
Type | Description |
---|---|
System.String |