Show / Hide Table of Contents

    Class RoutingDefinition

    A member or material routing definition

    Inheritance
    System.Object
    RoutingDefinition
    Inherited Members
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Setup
    Assembly: DesignData.SDS2.Setup.dll
    Syntax
    public sealed class RoutingDefinition
    Remarks

    This really points to an entry in the user routing table, and this definition knows which routing list it's from.

    Constructors

    RoutingDefinition(String, String)

    Create a new, standalone, route. This cannot be assigned until it's been added to a fabricator

    Declaration
    public RoutingDefinition(string routeType, string description)
    Parameters
    Type Name Description
    System.String routeType
    System.String description

    Properties

    RouteDescription

    The description of this individual routing

    Declaration
    public string RouteDescription { get; }
    Property Value
    Type Description
    System.String

    RouteType

    The descriptive type of routing

    Declaration
    public string RouteType { get; }
    Property Value
    Type Description
    System.String

    Methods

    Equals(Object)

    Declaration
    public override bool Equals(object other)
    Parameters
    Type Name Description
    System.Object other
    Returns
    Type Description
    System.Boolean
    Overrides
    System.Object.Equals(System.Object)

    Finalize()

    Declaration
    protected void Finalize()

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()

    Operators

    Equality(RoutingDefinition, RoutingDefinition)

    Declaration
    public static bool operator ==(RoutingDefinition a, RoutingDefinition b)
    Parameters
    Type Name Description
    RoutingDefinition a
    RoutingDefinition b
    Returns
    Type Description
    System.Boolean

    Inequality(RoutingDefinition, RoutingDefinition)

    Declaration
    public static bool operator !=(RoutingDefinition a, RoutingDefinition b)
    Parameters
    Type Name Description
    RoutingDefinition a
    RoutingDefinition b
    Returns
    Type Description
    System.Boolean
    Back to top