Search Results for

    Show / Hide Table of Contents
    View Source

    Class MemberExportModel

    Represents the model for exporting member data.

    Inheritance
    object
    Namespace: Umbraco.Cms.Core.Models.Membership
    Assembly: Umbraco.Core.dll
    Syntax
    public class MemberExportModel

    Constructors

    View Source

    MemberExportModel()

    Declaration
    public MemberExportModel()

    Properties

    View Source

    ContentTypeAlias

    Gets or sets the content type alias of the member.

    Declaration
    public string? ContentTypeAlias { get; set; }
    Property Value
    Type Description
    string
    View Source

    CreateDate

    Gets or sets the date and time when the member was created.

    Declaration
    public DateTime CreateDate { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    Email

    Gets or sets the email address of the member.

    Declaration
    public string? Email { get; set; }
    Property Value
    Type Description
    string
    View Source

    Groups

    Gets or sets the list of group names the member belongs to.

    Declaration
    public List<string> Groups { get; set; }
    Property Value
    Type Description
    List<string>
    View Source

    Id

    Gets or sets the unique identifier for the member.

    Declaration
    public int Id { get; set; }
    Property Value
    Type Description
    int
    View Source

    Key

    Gets or sets the unique key for the member.

    Declaration
    public Guid Key { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    Name

    Gets or sets the name of the member.

    Declaration
    public string? Name { get; set; }
    Property Value
    Type Description
    string
    View Source

    Properties

    Gets or sets the list of custom properties for the member.

    Declaration
    public List<MemberExportProperty> Properties { get; set; }
    Property Value
    Type Description
    List<MemberExportProperty>
    View Source

    UpdateDate

    Gets or sets the date and time when the member was last updated.

    Declaration
    public DateTime UpdateDate { get; set; }
    Property Value
    Type Description
    DateTime
    View Source

    Username

    Gets or sets the username of the member.

    Declaration
    public string? Username { get; set; }
    Property Value
    Type Description
    string
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX