Class MemberGroup
Represents a member type
Namespace: Umbraco.Core.Models
Assembly: Umbraco.Core.dll
Syntax
[Serializable]
[DataContract(IsReference = true)]
public class MemberGroup : EntityBase, IMemberGroup, IEntity, IDeepCloneable, IRememberBeingDirty, ICanBeDirty, IHaveAdditionalData
Properties
View SourceAdditionalData
Gets additional data for this entity.
Declaration
[DataMember]
public IDictionary<string, object> AdditionalData { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.Object> |
Remarks
Can be empty, but never null. To avoid allocating, do not test for emptiness, but use HasAdditionalData instead.
CreatorId
Declaration
[DataMember]
public int CreatorId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
HasAdditionalData
Determines whether this entity has additional data.
Declaration
[IgnoreDataMember]
public bool HasAdditionalData { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Remarks
Use this property to check for additional data without getting AdditionalData, to avoid allocating.
Name
Declaration
[DataMember]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |