Class MultiUrlPickerValueEditor.LinkDto
Represents a data transfer object (DTO) for a link item used by the MultiUrlPicker value editor. This class typically contains information such as the URL, name, and target for each link.
Inheritance
object
Namespace: Umbraco.Cms.Core.PropertyEditors
Assembly: Umbraco.Infrastructure.dll
Syntax
[DataContract]
public class MultiUrlPickerValueEditor.LinkDto
Constructors
View SourceLinkDto()
Declaration
public LinkDto()
Properties
View SourceCulture
Declaration
[DataMember(Name = "culture")]
public string? Culture { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Gets or sets the name of the link.
Declaration
[DataMember(Name = "name")]
public string? Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
QueryString
Gets or sets the query string part of the link.
Declaration
[DataMember(Name = "queryString")]
public string? QueryString { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Target
Gets or sets the target attribute that specifies where to open the linked document, such as "_blank" for a new tab or window.
Declaration
[DataMember(Name = "target")]
public string? Target { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Type
Gets or sets the type of the link, such as 'internal', 'external', or 'media'.
Declaration
[DataMember(Name = "type")]
public string? Type { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Udi
Gets or sets the unique document identifier (UDI) associated with this link, if available.
Declaration
[DataMember(Name = "udi")]
public GuidUdi? Udi { get; set; }
Property Value
| Type | Description |
|---|---|
| GuidUdi |
Unique
Gets or sets the unique identifier for the link.
Declaration
[DataMember(Name = "unique")]
public Guid? Unique { get; set; }
Property Value
| Type | Description |
|---|---|
| Guid? |
Url
Gets or sets the absolute or relative URL associated with the link.
Declaration
[DataMember(Name = "url")]
public string? Url { get; set; }
Property Value
| Type | Description |
|---|---|
| string |