InstallPath Class
Represents the installation path of a file or directory from an installer product database.
Methods
| Method | Description | 
|---|---|
| ToString() | Gets the full source path. | 
Properties
| Property | Description | 
|---|---|
| ChildPaths | Gets the set of child paths if this InstallPath object represents a a directory. | 
| ParentPath | Gets the path of the parent directory. | 
| SourceName | Gets or sets the source name of the InstallPath. | 
| SourcePath | Gets the full source path. | 
| TargetName | Gets or sets the target name of the install path. | 
| TargetPath | Gets the full target path. | 
WixToolset.Dtf.WindowsInstaller.Package.dll version 6.0.0+8c7432e50072e009353ea5f2c956ccf453476f71
ToString() Method
Gets the full source path.
Declaration
public string ToString()
Return value
string  «see P:WixToolset.Dtf.WindowsInstaller.Package.InstallPath.SourcePath» 
ChildPaths Property
Gets the set of child paths if this InstallPath object represents a a directory.
Declaration
public InstallPathCollection ChildPaths { get; set; } 
ParentPath Property
Gets the path of the parent directory.
Declaration
public InstallPath ParentPath { get; set; } 
SourceName Property
Gets or sets the source name of the InstallPath.
Declaration
public string SourceName { get; set; } 
SourcePath Property
Gets the full source path.
Declaration
public string SourcePath { get; set; } 
TargetName Property
Gets or sets the target name of the install path.
Declaration
public string TargetName { get; set; } 
TargetPath Property
Gets the full target path.
Declaration
public string TargetPath { get; set; }