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