Search Results for

    Show / Hide Table of Contents
    View Source

    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 Source

    LinkDto()

    Declaration
    public LinkDto()

    Properties

    View Source

    Culture

    Declaration
    [DataMember(Name = "culture")]
    public string? Culture { get; set; }
    Property Value
    Type Description
    string
    View Source

    Name

    Gets or sets the name of the link.

    Declaration
    [DataMember(Name = "name")]
    public string? Name { get; set; }
    Property Value
    Type Description
    string
    View Source

    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
    View Source

    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
    View Source

    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
    View Source

    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
    View Source

    Unique

    Gets or sets the unique identifier for the link.

    Declaration
    [DataMember(Name = "unique")]
    public Guid? Unique { get; set; }
    Property Value
    Type Description
    Guid?
    View Source

    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
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX