Search Results for

    Show / Hide Table of Contents
    View Source

    Class UserDisplay

    Represents a user that is being edited

    Inheritance
    System.Object
    EntityBasic
    UserBasic
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    [DataContract(Name = "user", Namespace = "")]
    public class UserDisplay : UserBasic, INotificationModel

    Constructors

    View Source

    UserDisplay()

    Declaration
    public UserDisplay()

    Properties

    View Source

    AvailableCultures

    Gets the available cultures (i.e. to populate a drop down) The key is the culture stored in the database, the value is the Name

    Declaration
    [DataMember(Name = "availableCultures")]
    public IDictionary<string, string> AvailableCultures { get; set; }
    Property Value
    Type Description
    IDictionary<System.String, System.String>
    View Source

    CalculatedStartContentIds

    A readonly value showing the user's current calculated start content ids

    Declaration
    [DataMember(Name = "calculatedStartContentIds")]
    public IEnumerable<EntityBasic>? CalculatedStartContentIds { get; set; }
    Property Value
    Type Description
    System.Nullable<IEnumerable<EntityBasic>>
    View Source

    CalculatedStartMediaIds

    A readonly value showing the user's current calculated start media ids

    Declaration
    [DataMember(Name = "calculatedStartMediaIds")]
    public IEnumerable<EntityBasic>? CalculatedStartMediaIds { get; set; }
    Property Value
    Type Description
    System.Nullable<IEnumerable<EntityBasic>>
    View Source

    CreateDate

    Declaration
    [DataMember(Name = "createDate")]
    public DateTime CreateDate { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    FailedPasswordAttempts

    Declaration
    [DataMember(Name = "failedPasswordAttempts")]
    public int FailedPasswordAttempts { get; set; }
    Property Value
    Type Description
    System.Int32
    View Source

    LastLockoutDate

    Declaration
    [DataMember(Name = "lastLockoutDate")]
    public DateTime? LastLockoutDate { get; set; }
    Property Value
    Type Description
    System.Nullable<DateTime>
    View Source

    LastPasswordChangeDate

    Declaration
    [DataMember(Name = "lastPasswordChangeDate")]
    public DateTime? LastPasswordChangeDate { get; set; }
    Property Value
    Type Description
    System.Nullable<DateTime>
    View Source

    Navigation

    Declaration
    [DataMember(Name = "navigation")]
    public IEnumerable<EditorNavigation> Navigation { get; set; }
    Property Value
    Type Description
    IEnumerable<EditorNavigation>
    View Source

    ResetPasswordValue

    If the password is reset on save, this value will be populated

    Declaration
    [DataMember(Name = "resetPasswordValue")]
    public string ResetPasswordValue { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    StartContentIds

    Declaration
    [DataMember(Name = "startContentIds")]
    public IEnumerable<EntityBasic> StartContentIds { get; set; }
    Property Value
    Type Description
    IEnumerable<EntityBasic>
    View Source

    StartMediaIds

    Declaration
    [DataMember(Name = "startMediaIds")]
    public IEnumerable<EntityBasic> StartMediaIds { get; set; }
    Property Value
    Type Description
    IEnumerable<EntityBasic>
    View Source

    UpdateDate

    Declaration
    [DataMember(Name = "updateDate")]
    public DateTime UpdateDate { get; set; }
    Property Value
    Type Description
    DateTime
    • Improve this Doc
    • View Source
    In This Article
    • Constructors
      • UserDisplay()
    • Properties
      • AvailableCultures
      • CalculatedStartContentIds
      • CalculatedStartMediaIds
      • CreateDate
      • FailedPasswordAttempts
      • LastLockoutDate
      • LastPasswordChangeDate
      • Navigation
      • ResetPasswordValue
      • StartContentIds
      • StartMediaIds
      • UpdateDate
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX