Class MultiNodePickerConfigurationTreeSource
Represents the 'startNode' value for the MultiNodePickerConfiguration
Inheritance
object
Namespace: Umbraco.Cms.Core.PropertyEditors
Assembly: Umbraco.Core.dll
Syntax
[DataContract]
public class MultiNodePickerConfigurationTreeSource
Constructors
View SourceMultiNodePickerConfigurationTreeSource()
Declaration
public MultiNodePickerConfigurationTreeSource()
Properties
View SourceDynamicRoot
Gets or sets the dynamic root configuration.
Declaration
[DataMember(Name = "dynamicRoot")]
public DynamicRoot? DynamicRoot { get; set; }
Property Value
| Type | Description |
|---|---|
| DynamicRoot |
ObjectType
Gets or sets the object type (e.g., content, media, member).
Declaration
[JsonPropertyName("type")]
[DataMember(Name = "type")]
public string? ObjectType { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
StartNodeId
Gets or sets the start node ID.
Declaration
[JsonPropertyName("id")]
[DataMember(Name = "id")]
public Guid? StartNodeId { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid? |
StartNodeQuery
Gets or sets the XPath query for the start node.
Declaration
[JsonPropertyName("query")]
[DataMember(Name = "query")]
public string? StartNodeQuery { get; set; }
Property Value
| Type | Description |
|---|---|
| string |