Class Volume
Information about a storage device
Inherited Members
Namespace: DuetAPI.ObjectModel
Assembly: DuetAPI.dll
Syntax
public sealed class Volume : ModelObject, IModelObject, ICloneable, INotifyPropertyChanged, INotifyPropertyChanging
Properties
Capacity
Total capacity of the storage device (in bytes or null)
Declaration
public long? Capacity { get; set; }
Property Value
Type | Description |
---|---|
long? |
FreeSpace
How much space is still available on this device (in bytes or null)
Declaration
public long? FreeSpace { get; set; }
Property Value
Type | Description |
---|---|
long? |
Mounted
Whether the storage device is mounted
Declaration
public bool Mounted { get; set; }
Property Value
Type | Description |
---|---|
bool |
Name
Name of this volume
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
OpenFiles
Number of currently open files or null if unknown
Declaration
public int? OpenFiles { get; set; }
Property Value
Type | Description |
---|---|
int? |
PartitionSize
Total size of this volume (in bytes or null)
Declaration
public long? PartitionSize { get; set; }
Property Value
Type | Description |
---|---|
long? |
Path
Logical path of the storage device
Declaration
public string Path { get; set; }
Property Value
Type | Description |
---|---|
string |
Speed
Speed of the storage device (in bytes/s or null if unknown)
Declaration
public int? Speed { get; set; }
Property Value
Type | Description |
---|---|
int? |