Table of Contents

Class DslDataSource

Namespace: Casewhere.Runtime.DSL
Assembly: Casewhere.Runtime.dll

The DslDataSource is corresponding Data Source in Casewhere system. It contains publicable data on a Data Source.

public class DslDataSource

Inheritance

objectDslDataSource

Inherited Members

object.ToString(), object.Equals(object), object.Equals(object, object), object.ReferenceEquals(object, object), object.GetHashCode(), object.GetType(), object.MemberwiseClone()

Extension Methods

ObjectExtension.ConvertToBsonValue(object), EnumExtensions.DeepClone<DslDataSource>(DslDataSource)

Constructors

DslDataSource()

public DslDataSource()

Properties

BuiltIn

The BuiltIn property is a flag which indicates that an instance is Build-in or Custom Data Source.

public bool BuiltIn { get; set; }

Property Value

bool

Id

The identifier of the Data Source.

public Guid Id { get; set; }

Property Value

Guid

Name

The name of the Data Source.

public string Name { get; set; }

Property Value

string

PrimaryDataClass

The PrimaryDataClass contains information about primary Data Class which is used to built the Data Source.

public DslDataSourceDataClass PrimaryDataClass { get; set; }

Property Value

DslDataSourceDataClass

ProductId

The ProductId specifies product which the Data Source depend on.

public Guid ProductId { get; set; }

Property Value

Guid

Tags

The tags are attached to a Data Source

public IList<string> Tags { get; set; }

Property Value

IList<string>