Search Results for

    Show / Hide Table of Contents
    View Source

    Class DocumentUrlDto

    Inheritance
    object
    Namespace: Umbraco.Cms.Infrastructure.Persistence.Dtos
    Assembly: Umbraco.Infrastructure.dll
    Syntax
    [TableName("umbracoDocumentUrl")]
    [PrimaryKey("id", AutoIncrement = true)]
    [ExplicitColumns]
    public class DocumentUrlDto

    Fields

    View Source

    TableName

    Declaration
    public const string TableName = "umbracoDocumentUrl"
    Field Value
    Type Description
    string

    Properties

    View Source

    IsDraft

    Declaration
    [Column("isDraft")]
    public bool IsDraft { get; set; }
    Property Value
    Type Description
    bool
    View Source

    IsPrimary

    Declaration
    [Column("isPrimary")]
    public bool IsPrimary { get; set; }
    Property Value
    Type Description
    bool
    View Source

    LanguageId

    Declaration
    [Column("languageId")]
    [ForeignKey(typeof(LanguageDto))]
    public int LanguageId { get; set; }
    Property Value
    Type Description
    int
    View Source

    NodeId

    Declaration
    [Column("id")]
    [PrimaryKeyColumn(Clustered = false, AutoIncrement = true)]
    public int NodeId { get; set; }
    Property Value
    Type Description
    int
    View Source

    UniqueId

    Declaration
    [Index(IndexTypes.UniqueClustered, ForColumns = "uniqueId, languageId, isDraft, urlSegment", Name = "IX_umbracoDocumentUrl")]
    [Column("uniqueId")]
    [ForeignKey(typeof(NodeDto), Column = "uniqueId")]
    public Guid UniqueId { get; set; }
    Property Value
    Type Description
    Guid
    View Source

    UrlSegment

    Declaration
    [Column("urlSegment")]
    public string UrlSegment { get; set; }
    Property Value
    Type Description
    string
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX