Show / Hide Table of Contents

    Class Repository

    A place where SDS2 jobs are stored. Jobs are accessed in this repository by name.

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

    Constructors

    Repository()

    Declaration
    public Repository()

    Properties

    Default

    This gets the default job repository for the user running your software

    Declaration
    public static Repository Default { get; }
    Property Value
    Type Description
    Repository

    JobIdentifiers

    A list of all the jobs in this repository.

    Declaration
    public IdentifierList JobIdentifiers { get; }
    Property Value
    Type Description
    IdentifierList

    Name

    The name of the job repository

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

    ShadowPath

    The URI for this repository.

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

    URL

    The URI for this repository.

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

    Methods

    Finalize()

    Declaration
    protected void Finalize()

    GetAllRepositories()

    Return a list of all job repositories on the system. Users can have multiple repositories on various database backends.

    Declaration
    public static RepositoryList GetAllRepositories()
    Returns
    Type Description
    RepositoryList
    Back to top