Class MemberFilterItem
Represents a member in a filtered listing, covering both content-based and external-only members.
Inheritance
Namespace: Umbraco.Cms.Core.Models.Membership
Assembly: Umbraco.Core.dll
Syntax
public class MemberFilterItem
Constructors
View SourceMemberFilterItem()
Declaration
public MemberFilterItem()
Properties
View SourceGets or sets the email address.
Declaration
public string Email { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
IsApproved
Gets or sets a value indicating whether the member is approved.
Declaration
public bool IsApproved { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsExternalOnly
Gets or sets a value indicating whether this is an external-only member.
Declaration
public bool IsExternalOnly { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsLockedOut
Gets or sets a value indicating whether the member is locked out.
Declaration
public bool IsLockedOut { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
Key
Gets or sets the unique key of the member.
Declaration
public Guid Key { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
Kind
Gets or sets the member kind.
Declaration
public MemberKind Kind { get; set; }
Property Value
| Type | Description |
|---|---|
| MemberKind |
LastLockoutDate
Gets or sets the last lockout date.
Declaration
public DateTime? LastLockoutDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
LastLoginDate
Gets or sets the last login date.
Declaration
public DateTime? LastLoginDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
LastPasswordChangeDate
Gets or sets the last password change date.
Declaration
public DateTime? LastPasswordChangeDate { get; set; }
Property Value
| Type | Description |
|---|---|
| DateTime? |
MemberTypeIcon
Gets or sets the member type icon. Null for external-only members.
Declaration
public string? MemberTypeIcon { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MemberTypeKey
Gets or sets the member type key. Null for external-only members.
Declaration
public Guid? MemberTypeKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid? |
MemberTypeName
Gets or sets the member type name. Null for external-only members.
Declaration
public string? MemberTypeName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Gets or sets the display name.
Declaration
public string? Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
UserName
Gets or sets the username.
Declaration
public string UserName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |