Class VssPartialFileInfo
Representation of information on a partial file associated with a component.
Inherited Members
Namespace: Alphaleonis.Win32.Vss
Assembly: AlphaVSS.Common.dll
Syntax
[Serializable]
public class VssPartialFileInfo
Remarks
See MSDN documentation on IVssComponent::GetPartialFile Method for more information.
Constructors
| Improve this Doc View SourceVssPartialFileInfo(String, String, String, String)
Initializes a new instance of the VssPartialFileInfo class
Declaration
public VssPartialFileInfo(string path, string fileName, string range, string metadata)
Parameters
Type | Name | Description |
---|---|---|
String | path | The path of the partial file. |
String | fileName | The name of the partial file. |
String | range | Either a listing of file offsets and lengths that make up the partial file support range (the sections of the file that were backed up), or the name of a file containing such a list. |
String | metadata | Any additional metadata required by a writer to validate a partial file restore operation. The information in this metadata string will be opaque to requesters. May be null |
Properties
| Improve this Doc View SourceFileName
The name of the partial file.
Declaration
public string FileName { get; }
Property Value
Type | Description |
---|---|
String |
Metadata
Any additional metadata required by a writer to validate a partial file restore operation. The information in this metadata string will be opaque to requesters.
Additional metadata is not required, so Metadata may also be empty (zero length).
Declaration
public string Metadata { get; }
Property Value
Type | Description |
---|---|
String |
Path
The path of the partial file.
Users of this public need to check to determine whether this path ends with a backslash ("\").
Declaration
public string Path { get; }
Property Value
Type | Description |
---|---|
String |
Range
Either a listing of file offsets and lengths that make up the partial file support range (the sections of the file that were backed up), or the name of a file containing such a list.
Declaration
public string Range { get; }
Property Value
Type | Description |
---|---|
String |