View Source
  Interface IMembershipUser
  
  
  
  
  Assembly: Umbraco.Core.dll
  Syntax
  
    public interface IMembershipUser : IEntity, IDeepCloneable
   
  Properties
  
  
    View Source
  
  
  
  
  Declaration
  
    string Comments { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  Email
  
  
  Declaration
  
    string Email { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  EmailConfirmedDate
  
  
  Declaration
  
    DateTime? EmailConfirmedDate { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Nullable<DateTime> |  | 
    
  
  
    View Source
  
  FailedPasswordAttempts
  Gets or sets the number of failed password attempts.
This is the number of times the password was entered incorrectly upon login.
Declaration
  
    int FailedPasswordAttempts { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Int32 |  | 
    
  
  
  
  
    View Source
  
  IsApproved
  
  
  Declaration
  
    bool IsApproved { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Boolean |  | 
    
  
  
    View Source
  
  IsLockedOut
  
  
  Declaration
  
    bool IsLockedOut { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Boolean |  | 
    
  
  
    View Source
  
  LastLockoutDate
  
  
  Declaration
  
    DateTime? LastLockoutDate { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Nullable<DateTime> |  | 
    
  
  
    View Source
  
  LastLoginDate
  
  
  Declaration
  
    DateTime? LastLoginDate { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Nullable<DateTime> |  | 
    
  
  
    View Source
  
  LastPasswordChangeDate
  
  
  Declaration
  
    DateTime? LastPasswordChangeDate { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.Nullable<DateTime> |  | 
    
  
  
    View Source
  
  PasswordConfiguration
  The user's specific password config (i.e. algorithm type, etc...)
Declaration
  
    string PasswordConfiguration { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  RawPasswordValue
  Gets or sets the raw password value
Declaration
  
    string RawPasswordValue { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  SecurityStamp
  Gets or sets the security stamp used by ASP.NET Identity
Declaration
  
    string SecurityStamp { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  | 
    
  
  
    View Source
  
  Username
  
  
  Declaration
  
    string Username { get; set; }
   
  Property Value
  
    
      
        | Type | Description | 
    
    
      
        | System.String |  |