Interface IUserData
Defines the contract for user-specific data storage.
Namespace: Umbraco.Cms.Core.Models.Membership
Assembly: Umbraco.Core.dll
Syntax
public interface IUserData
Properties
View SourceGroup
Gets or sets the group category for the user data.
Declaration
string Group { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Identifier
Gets or sets the identifier for the user data within the group.
Declaration
string Identifier { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Key
Gets or sets the unique key for the user data entry.
Declaration
Guid Key { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
UserKey
Gets or sets the key of the user this data belongs to.
Declaration
Guid UserKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
Value
Gets or sets the value of the user data.
Declaration
string Value { get; set; }
Property Value
| Type | Description |
|---|---|
| string |