Class VssDiffAreaProperties
The VssDiffAreaProperties structure describes associations between volumes containing the original file data and volumes containing the shadow copy storage area (also known as the diff area).
Inherited Members
Namespace: Alphaleonis.Win32.Vss
Assembly: AlphaVSS.Common.dll
Syntax
[Serializable]
public class VssDiffAreaProperties
Constructors
| Improve this Doc View SourceVssDiffAreaProperties(String, String, Int64, Int64, Int64)
Initializes a new instance of the VssDiffAreaProperties class.
Declaration
public VssDiffAreaProperties(string volumeName, string diffAreaVolumeName, long maximumDiffSpace, long allocatedDiffSpace, long usedDiffSpace)
Parameters
Type | Name | Description |
---|---|---|
String | volumeName | Name of the volume. |
String | diffAreaVolumeName | Name of the diff area volume. |
Int64 | maximumDiffSpace | The maximum diff space. |
Int64 | allocatedDiffSpace | The allocated diff space. |
Int64 | usedDiffSpace | The used diff space. |
Properties
| Improve this Doc View SourceAllocatedDiffSpace
Gets the allocated space on the shadow copy storage area volume by this association. This must be less than or equal to MaximumDiffSpace.
Declaration
public long AllocatedDiffSpace { get; }
Property Value
Type | Description |
---|---|
Int64 | The allocated space on the shadow copy storage area volume by this association. |
DiffAreaVolumeName
Gets the shadow copy storage area volume name.
Declaration
public string DiffAreaVolumeName { get; }
Property Value
Type | Description |
---|---|
String | The shadow copy storage area volume name. |
MaximumDiffSpace
Gets the maximum space used on the shadow copy storage area volume for this association.
Declaration
public long MaximumDiffSpace { get; }
Property Value
Type | Description |
---|---|
Int64 | The maximum space used on the shadow copy storage area volume for this association. |
UsedDiffSpace
Gets the used space from the allocated area. This must be less than or equal to AllocatedDiffSpace.
Declaration
public long UsedDiffSpace { get; }
Property Value
Type | Description |
---|---|
Int64 | The the used space from the allocated area. |
VolumeName
Gets the original volume name.
Declaration
public string VolumeName { get; }
Property Value
Type | Description |
---|---|
String | The original volume name. |