Click or drag to resize
ApplicationUser Class
Representation of application user identity.
Inheritance Hierarchy
SystemObject
  IdentityUserInt32
    Kentico.MembershipApplicationUser
      Kentico.MembershipUser

Namespace: Kentico.Membership
Assembly: Kentico.Membership (in Kentico.Membership.dll) Version: 13.0.131
Syntax
C#
public class ApplicationUser : IdentityUser<int>

The ApplicationUser type exposes the following members.

Constructors
  NameDescription
Public methodApplicationUser
Creates empty user.
Public methodApplicationUser(UserInfo)
Creates new user from UserInfo.
Top
Properties
  NameDescription
Public propertyEnabled
Indicates if the user is enabled. This represents the lockout notion in ASP.NET Identity.
Public propertyFirstName
First name.
Public propertyFullName
Full name.
Public propertyGUID
Guid.
Public propertyIsExternal
Indicates that the user can be logged in only through an external authentication provider.
Public propertyLastName
Last name.
Public propertyRoles
Roles of the user.
Public propertyWaitingForApproval
Together with Enabled indicates whether the user needs to wait for administrator's approval before logging in.
Top
Methods
  NameDescription
Public methodMapFromUserInfo
Maps UserInfo properties to the ApplicationUser instance.
Public methodMapToUserInfo
Maps ApplicationUser properties to the UserInfo instance.
Top
See Also