View Source
Class MemberSave
A model representing a content item to be saved
Inheritance
System.Object
Assembly: Umbraco.Core.dll
Syntax
public class MemberSave : ContentBaseSave<IMember>, IContentProperties<ContentPropertyBasic>, IContentSave<IMember>, IHaveUploadedFiles
Properties
View Source
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
View Source
Username
Declaration
[DataMember(Name = "username", IsRequired = true)]
public string Username { get; set; }
Property Value
Type |
Description |
System.String |
|