Class UserAuthenticationInfo
DNN-4016 The UserAuthenticationInfo class provides the Entity Layer for the user information in the Authentication Systems.
Implements
Inherited Members
Namespace: DotNetNuke.Services.Authentication
Assembly: DotNetNuke.dll
Syntax
public class UserAuthenticationInfo : BaseEntityInfo, IHydratable
Constructors
| Improve this Doc View SourceUserAuthenticationInfo()
Initializes a new instance of the UserAuthenticationInfo class.
Declaration
public UserAuthenticationInfo()
Properties
| Improve this Doc View SourceAuthenticationToken
Gets or sets the url for the Logoff Control.
Declaration
public string AuthenticationToken { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
KeyID
Gets or sets the Key ID.
Declaration
public virtual int KeyID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An Integer. |
UserAuthenticationID
Gets or sets the ID of the User Record in the Authentication System.
Declaration
public int UserAuthenticationID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
UserID
Gets or sets the PackageID for the Authentication System.
Declaration
public int UserID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceFill(IDataReader)
Fills a UserAuthenticationInfo from a Data Reader.
Declaration
public virtual void Fill(IDataReader dr)
Parameters
Type | Name | Description |
---|---|---|
IDataReader | dr | The Data Reader to use. |