Class UserUpdateModel
Represents the model used for updating an existing user.
Inheritance
Namespace: Umbraco.Cms.Core.Models
Assembly: Umbraco.Core.dll
Syntax
public class UserUpdateModel
Constructors
View SourceUserUpdateModel()
Declaration
public UserUpdateModel()
Properties
View SourceContentStartNodeKeys
Gets or sets the collection of content start node keys for the user.
Declaration
public ISet<Guid> ContentStartNodeKeys { get; set; }
Property Value
| Type | Description |
|---|---|
| ISet<Guid> |
Remarks
These define the content tree sections the user has access to.
Gets or sets the email address of the user.
Declaration
public string Email { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ExistingUserKey
Gets or sets the unique key of the existing user to update.
Declaration
public required Guid ExistingUserKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid |
HasContentRootAccess
Gets or sets a value indicating whether the user has access to the content root.
Declaration
public bool HasContentRootAccess { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
HasMediaRootAccess
Gets or sets a value indicating whether the user has access to the media root.
Declaration
public bool HasMediaRootAccess { get; set; }
Property Value
| Type | Description |
|---|---|
| bool |
LanguageIsoCode
Gets or sets the ISO code of the user's preferred language.
Declaration
public string LanguageIsoCode { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MediaStartNodeKeys
Gets or sets the collection of media start node keys for the user.
Declaration
public ISet<Guid> MediaStartNodeKeys { get; set; }
Property Value
| Type | Description |
|---|---|
| ISet<Guid> |
Remarks
These define the media tree sections the user has access to.
Name
Gets or sets the display name of the user.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
UserGroupKeys
Gets or sets the collection of user group keys the user belongs to.
Declaration
public ISet<Guid> UserGroupKeys { get; set; }
Property Value
| Type | Description |
|---|---|
| ISet<Guid> |
UserName
Gets or sets the username of the user.
Declaration
public string UserName { get; set; }
Property Value
| Type | Description |
|---|---|
| string |