Class VssWMDependency
VssWMDependency is used to determine the writer ID, logical path, and component name of components that must be restored or backed up along with the target component.
Inherited Members
Namespace: Alphaleonis.Win32.Vss
Assembly: AlphaVSS.Common.dll
Syntax
[Serializable]
public class VssWMDependency
Remarks
Note that a dependency does not indicate an order of preference between the component with the documented dependencies and the components it depends on. A dependency merely indicates that the component and the components it depends on must always be backed up or restored together.
note
Windows XP: This class is not supported until Windows Server 2003
Constructors
| Improve this Doc View SourceVssWMDependency(Guid, String, String)
Initializes a new instance of the VssWMDependency class.
Declaration
public VssWMDependency(Guid writerId, string logicalPath, string componentName)
Parameters
Type | Name | Description |
---|---|---|
Guid | writerId | The writer id. |
String | logicalPath | The logical path. |
String | componentName | Name of the component. |
Properties
| Improve this Doc View SourceComponentName
Retrieves the name of a component that the current component depends on.
Declaration
public string ComponentName { get; }
Property Value
Type | Description |
---|---|
String |
LogicalPath
The logical path of a component that the current component depends on.
Declaration
public string LogicalPath { get; }
Property Value
Type | Description |
---|---|
String |
WriterId
The class ID of a writer containing a component that the current component depends on.
Declaration
public Guid WriterId { get; }
Property Value
Type | Description |
---|---|
Guid |