Installation Class
Subclasses of this abstract class represent a unique instance of a registered product or patch installation.
Properties
Section titled “Properties”| Property | Description |
|---|---|
| Context | Gets the user context of this product or patch installation. |
| IsInstalled | Gets a value indicating whether this product or patch is installed on the current system. |
| Item | Gets a property about the product or patch installation. |
| SourceList | Gets the source list of this product or patch installation. |
| UserSid | Gets the user security identifier (SID) under which this product or patch installation is available. |
WixToolset.Dtf.WindowsInstaller.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
Context Property
Section titled “Context Property”Gets the user context of this product or patch installation.
Declaration
Section titled “Declaration”public UserContexts Context { get; set; }IsInstalled Property
Section titled “IsInstalled Property”Gets a value indicating whether this product or patch is installed on the current system.
Declaration
Section titled “Declaration”public bool IsInstalled { get; set; }Item Property
Section titled “Item Property”Gets a property about the product or patch installation.
Declaration
Section titled “Declaration”public string Item[ string propertyName] { get; set; }Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| propertyName | string | Name of the property being retrieved. |
SourceList Property
Section titled “SourceList Property”Gets the source list of this product or patch installation.
Declaration
Section titled “Declaration”public SourceList SourceList { get; set; }UserSid Property
Section titled “UserSid Property”Gets the user security identifier (SID) under which this product or patch installation is available.
Declaration
Section titled “Declaration”public string UserSid { get; set; }