Click or drag to resize
User Class
Representation of 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 User : ApplicationUser, IUser<int>

The User type exposes the following members.

Constructors
  NameDescription
Public methodUser
Creates empty user.
Public methodUser(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.
(Inherited from ApplicationUser.)
Public propertyFirstName
First name.
(Inherited from ApplicationUser.)
Public propertyFullName
Full name.
(Inherited from ApplicationUser.)
Public propertyGUID
Guid.
(Inherited from ApplicationUser.)
Public propertyIsExternal
Indicates that the user can be logged in only through an external authentication provider.
(Inherited from ApplicationUser.)
Public propertyLastName
Last name.
(Inherited from ApplicationUser.)
Public propertyRoles
Roles of the user.
(Inherited from ApplicationUser.)
Public propertyWaitingForApproval
Together with Enabled indicates whether the user needs to wait for administrator's approval before logging in.
(Inherited from ApplicationUser.)
Top
Methods
  NameDescription
Public methodMapFromUserInfo
Maps UserInfo properties to the ApplicationUser instance.
(Inherited from ApplicationUser.)
Public methodMapToUserInfo
Maps ApplicationUser properties to the UserInfo instance.
(Inherited from ApplicationUser.)
Top
See Also