Class MemberTypePropertyProfileAccess
Used to track the property types that are visible/editable on member profiles
Inheritance
object
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public class MemberTypePropertyProfileAccess
Constructors
View SourceMemberTypePropertyProfileAccess(bool, bool, bool)
Initializes a new instance of the MemberTypePropertyProfileAccess class.
Declaration
public MemberTypePropertyProfileAccess(bool isVisible, bool isEditable, bool isSenstive)
Parameters
| Type | Name | Description |
|---|---|---|
| bool | isVisible | Whether the property is visible on the member profile. |
| bool | isEditable | Whether the property can be edited by the member. |
| bool | isSenstive | Whether the property contains sensitive data. |
Properties
View SourceIsEditable
Gets or sets a value indicating whether the property can be edited by the member.
Declaration
public bool IsEditable { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsSensitive
Gets or sets a value indicating whether the property contains sensitive data.
Declaration
public bool IsSensitive { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
IsVisible
Gets or sets a value indicating whether the property is visible on the member profile.
Declaration
public bool IsVisible { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |