Table of Contents

Class DependencyFile

Namespace
Cognite.Simulator.Utils
Assembly
Cognite.Simulator.Utils.dll

Represents a dependency file that the main model file requires to function

public class DependencyFile
Inheritance
DependencyFile
Inherited Members

Constructors

DependencyFile()

Initializes a new instance of the DependencyFile class.

public DependencyFile()

DependencyFile(SimulatorFileDependency)

Initializes a new instance of the DependencyFile class.

public DependencyFile(SimulatorFileDependency fileDependency)

Parameters

fileDependency SimulatorFileDependency

Properties

Arguments

Additional arguments or parameters associated with this dependency, used to provide metadata about how the file should be used by the simulator. For example: {"simulatorObject": "well_1"}

public Dictionary<string, string> Arguments { get; set; }

Property Value

Dictionary<string, string>

Downloaded

Indicates if the dependency file has been downloaded and the file exists on the disk.

public bool Downloaded { get; }

Property Value

bool

FilePath

The absolute path where the dependency file is stored on disk

public string FilePath { get; set; }

Property Value

string

Id

A unique identifier of a file in CDF.

public long Id { get; set; }

Property Value

long