Class DatasetInfo
Assembly: Unity.Cloud.Assets.dll
Syntax
public abstract class DatasetInfo : IDatasetInfo
Constructors
DatasetInfo()
Declaration
DatasetInfo(string)
Declaration
[Obsolete("Use the default constructor.")]
protected DatasetInfo(string name)
Parameters
Type |
Name |
Description |
string |
name |
|
DatasetInfo(IDataset)
Declaration
[Obsolete("Use the default constructor.")]
protected DatasetInfo(IDataset dataset)
Parameters
Properties
Description
A description of the dataset.
Declaration
public string Description { get; set; }
Property Value
IsVisible
Indicates whether the dataset is visible or not.
Declaration
public bool? IsVisible { get; set; }
Property Value
Name
Declaration
public string Name { get; set; }
Property Value
The user tags of the dataset.
Declaration
public List<string> Tags { get; set; }
Property Value
Type
Declaration
public AssetType? Type { get; set; }
Property Value
Implements