Search Results for

    Show / Hide Table of Contents
    View Source

    Class MemberSave

    A model representing a content item to be saved

    Inheritance
    System.Object
    EntityBasic
    ContentItemBasic
    ContentItemBasic<ContentPropertyBasic>
    ContentBaseSave<IMember>
    Namespace: Umbraco.Cms.Core.Models.ContentEditing
    Assembly: Umbraco.Core.dll
    Syntax
    public class MemberSave : ContentBaseSave<IMember>, IContentProperties<ContentPropertyBasic>, IContentSave<IMember>, IHaveUploadedFiles

    Properties

    View Source

    Comments

    Returns the value from the Comments property

    Declaration
    public string Comments { get; }
    Property Value
    Type Description
    System.String
    View Source

    Email

    Declaration
    [DataMember(Name = "email", IsRequired = true)]
    [EmailAddress]
    public string Email { get; set; }
    Property Value
    Type Description
    System.String
    View Source

    Groups

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

    IsApproved

    Declaration
    [DataMember(Name = "isApproved")]
    public bool IsApproved { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    IsLockedOut

    Declaration
    [DataMember(Name = "isLockedOut")]
    public bool IsLockedOut { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    IsTwoFactorEnabled

    Declaration
    [DataMember(Name = "isTwoFactorEnabled")]
    public bool IsTwoFactorEnabled { get; set; }
    Property Value
    Type Description
    System.Boolean
    View Source

    Password

    Declaration
    [DataMember(Name = "password")]
    public ChangingPasswordModel Password { get; set; }
    Property Value
    Type Description
    ChangingPasswordModel
    View Source

    Username

    Declaration
    [DataMember(Name = "username", IsRequired = true)]
    public string Username { get; set; }
    Property Value
    Type Description
    System.String
    • Improve this Doc
    • View Source
    In This Article
    • Properties
      • Comments
      • Email
      • Groups
      • IsApproved
      • IsLockedOut
      • IsTwoFactorEnabled
      • Password
      • Username
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX