Class AuthenticationInfo
The AuthenticationInfo class provides the Entity Layer for the Authentication Systems.
Implements
Inherited Members
Namespace: DotNetNuke.Services.Authentication
Assembly: DotNetNuke.dll
Syntax
public class AuthenticationInfo : BaseEntityInfo, IHydratable
Constructors
| Improve this Doc View SourceAuthenticationInfo()
Initializes a new instance of the AuthenticationInfo class.
Declaration
public AuthenticationInfo()
Properties
| Improve this Doc View SourceAuthenticationID
Gets or sets the ID of the Authentication System.
Declaration
public int AuthenticationID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
AuthenticationType
Gets or sets the type (name) of the Authentication System (eg DNN, OpenID, LiveID).
Declaration
public string AuthenticationType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
IsEnabled
Gets or sets a value indicating whether gets and Sets a flag that determines whether the Authentication System is enabled.
Declaration
public bool IsEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
KeyID
Gets or sets the Key ID.
Declaration
public virtual int KeyID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An Integer. |
LoginControlSrc
Gets or sets the url for the Login Control.
Declaration
public string LoginControlSrc { get; set; }
Property Value
Type | Description |
---|---|
System.String |
LogoffControlSrc
Gets or sets the url for the Logoff Control.
Declaration
public string LogoffControlSrc { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PackageID
Gets or sets the PackageID for the Authentication System.
Declaration
public int PackageID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
SettingsControlSrc
Gets or sets the url for the Settings Control.
Declaration
public string SettingsControlSrc { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceFill(IDataReader)
Fills a RoleInfo from a Data Reader.
Declaration
public virtual void Fill(IDataReader dr)
Parameters
Type | Name | Description |
---|---|---|
IDataReader | dr | The Data Reader to use. |