InstallPath Class
Represents the installation path of a file or directory from an installer product database.
Methods
Section titled “Methods”| Method | Description |
|---|---|
| ToString() | Gets the full source path. |
Properties
Section titled “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 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
ToString() Method
Section titled “ToString() Method”Gets the full source path.
Declaration
Section titled “Declaration”public string ToString()Return value
Section titled “Return value”string «see P:WixToolset.Dtf.WindowsInstaller.Package.InstallPath.SourcePath»
ChildPaths Property
Section titled “ChildPaths Property”Gets the set of child paths if this InstallPath object represents a a directory.
Declaration
Section titled “Declaration”public InstallPathCollection ChildPaths { get; set; }ParentPath Property
Section titled “ParentPath Property”Gets the path of the parent directory.
Declaration
Section titled “Declaration”public InstallPath ParentPath { get; set; }SourceName Property
Section titled “SourceName Property”Gets or sets the source name of the InstallPath.
Declaration
Section titled “Declaration”public string SourceName { get; set; }SourcePath Property
Section titled “SourcePath Property”Gets the full source path.
Declaration
Section titled “Declaration”public string SourcePath { get; set; }TargetName Property
Section titled “TargetName Property”Gets or sets the target name of the install path.
Declaration
Section titled “Declaration”public string TargetName { get; set; }TargetPath Property
Section titled “TargetPath Property”Gets the full target path.
Declaration
Section titled “Declaration”public string TargetPath { get; set; }