Search Results for

    Show / Hide Table of Contents
    View Source

    Class UserStartNodeDto

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

    Fields

    View Source

    TableName

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

    Properties

    View Source

    Id

    Declaration
    [Column("id")]
    [PrimaryKeyColumn(Name = "PK_userStartNode")]
    public int Id { get; set; }
    Property Value
    Type Description
    int
    View Source

    StartNode

    Declaration
    [Column("startNode")]
    [ForeignKey(typeof(NodeDto))]
    public int StartNode { get; set; }
    Property Value
    Type Description
    int
    View Source

    StartNodeType

    Declaration
    [Column("startNodeType")]
    [Index(IndexTypes.UniqueNonClustered, ForColumns = "startNodeType, startNode, userId", Name = "IX_umbracoUserStartNode_startNodeType")]
    public int StartNodeType { get; set; }
    Property Value
    Type Description
    int
    View Source

    UserId

    Declaration
    [Column("userId")]
    [ForeignKey(typeof(UserDto))]
    public int UserId { get; set; }
    Property Value
    Type Description
    int

    Methods

    View Source

    Equals(object?)

    Determines whether the specified object is equal to the current object.

    Declaration
    public override bool Equals(object? obj)
    Parameters
    Type Name Description
    object obj

    The object to compare with the current object.

    Returns
    Type Description
    bool

    true if the specified object is equal to the current object; otherwise, false.

    View Source

    Equals(UserStartNodeDto?)

    Indicates whether the current object is equal to another object of the same type.

    Declaration
    public bool Equals(UserStartNodeDto? other)
    Parameters
    Type Name Description
    UserStartNodeDto other

    An object to compare with this object.

    Returns
    Type Description
    bool

    true if the current object is equal to the other parameter; otherwise, false.

    View Source

    GetHashCode()

    Serves as the default hash function.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int

    A hash code for the current object.

    Operators

    View Source

    operator ==(UserStartNodeDto, UserStartNodeDto)

    Declaration
    public static bool operator ==(UserStartNodeDto left, UserStartNodeDto right)
    Parameters
    Type Name Description
    UserStartNodeDto left
    UserStartNodeDto right
    Returns
    Type Description
    bool
    View Source

    operator !=(UserStartNodeDto, UserStartNodeDto)

    Declaration
    public static bool operator !=(UserStartNodeDto left, UserStartNodeDto right)
    Parameters
    Type Name Description
    UserStartNodeDto left
    UserStartNodeDto right
    Returns
    Type Description
    bool
    • Edit this page
    • View Source
    In this article
    Back to top Copyright © 2016-present Umbraco
    Generated by DocFX