Class DataSetInformation
Structure that is returned with the DataSet information
Inheritance
System.Object
DataSetInformation
Implements
System.IEquatable<DataSetInformation>
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.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: STAIExtensions.Abstractions.Common
Assembly: STAIExtensions.Abstractions.dll
Syntax
public class DataSetInformation : IEquatable<DataSetInformation>
Constructors
DataSetInformation(String, String, String, String)
Structure that is returned with the DataSet information
Declaration
public DataSetInformation(string DataSetName, string DataSetId, string DataSetType, string FriendlyDataSetType)
Parameters
Type | Name | Description |
---|---|---|
System.String | DataSetName | The name of the DataSet |
System.String | DataSetId | The unique Id of the DataSet |
System.String | DataSetType | The fully qualified type name of the DataSet |
System.String | FriendlyDataSetType |
Properties
DataSetId
The unique Id of the DataSet
Declaration
public string DataSetId { get; }
Property Value
Type | Description |
---|---|
System.String |
DataSetName
Gets the name of the DataSet
Declaration
public string DataSetName { get; }
Property Value
Type | Description |
---|---|
System.String |
DataSetType
The fully qualified type name of the DataSet
Declaration
public string DataSetType { get; }
Property Value
Type | Description |
---|---|
System.String |
FriendlyDataSetType
The fully qualified type name of the DataSet
Declaration
public string FriendlyDataSetType { get; }
Property Value
Type | Description |
---|---|
System.String |
Implements
System.IEquatable<T>