Class BackOfficeExternalLoginProviderErrors
Represents errors from an external login provider for the back office.
Inheritance
object
Namespace: Umbraco.Cms.Core.Security
Assembly: Umbraco.Core.dll
Syntax
public class BackOfficeExternalLoginProviderErrors
Constructors
View SourceBackOfficeExternalLoginProviderErrors()
Initializes a new instance of the BackOfficeExternalLoginProviderErrors class.
Declaration
public BackOfficeExternalLoginProviderErrors()
Remarks
Required for deserialization.
BackOfficeExternalLoginProviderErrors(string?, IEnumerable<string>)
Initializes a new instance of the BackOfficeExternalLoginProviderErrors class.
Declaration
public BackOfficeExternalLoginProviderErrors(string? authenticationType, IEnumerable<string> errors)
Parameters
| Type | Name | Description |
|---|---|---|
| string | authenticationType | The authentication type of the external provider. |
| IEnumerable<string> | errors | The collection of error messages. |
Properties
View SourceAuthenticationType
Gets or sets the authentication type of the external login provider.
Declaration
public string? AuthenticationType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Errors
Gets or sets the collection of error messages from the external login provider.
Declaration
public IEnumerable<string>? Errors { get; set; }
Property Value
| Type | Description |
|---|---|
| IEnumerable<string> |