Table of Contents

Class ExternalLogin

Namespace
Dynamicweb.Security.UserManagement.ExternalAuthentication
Assembly
Dynamicweb.Core.dll

Represents an external login provider data.

public sealed class ExternalLogin
Inheritance
ExternalLogin
Inherited Members

Properties

Created

Gets the date and time when the provider was created.

public DateTime Created { get; }

Property Value

DateTime

Icon

Gets or sets the icon of the provider.

public string? Icon { get; set; }

Property Value

string

Id

Gets or sets the id of the provider.

public int Id { get; }

Property Value

int

IsActive

Gets or sets value indicating whether login provider is active.

public bool IsActive { get; set; }

Property Value

bool

Name

Gets or sets the name of the provider.

public required string Name { get; set; }

Property Value

string

ProviderParameters

Gets or sets the XML string representing provider parameters.

public string? ProviderParameters { get; set; }

Property Value

string

ProviderTypeName

Gets or sets the type of the provider.

public required string ProviderTypeName { get; set; }

Property Value

string

Restriction

Gets or sets the value indicating whether the login provider can be used for frontend or backend log on.

public ExternalLoginRestriction Restriction { get; set; }

Property Value

ExternalLoginRestriction

Updated

Gets the date and time when the provider was updated.

public DateTime Updated { get; }

Property Value

DateTime
To top