WindowsInstallerStandard Class
Methods
Section titled “Methods”| Method | Description |
|---|---|
| GetPlatformSpecificDirectoryId(directoryId, platform) | Gets the platform specific directory id for a directory. Most directories are not platform specific and return themselves. |
| IsStandardAction(actionName) | Find out if an action is a standard action. |
| IsStandardDirectory(directoryId) | Find out if a directory is a standard directory. |
| IsStandardProperty(propertyName) | Find out if a property is a standard property. |
| StandardActions() | Standard actions. |
| StandardDirectoryIds() | Standard directory identifiers. |
WixToolset.Data.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
GetPlatformSpecificDirectoryId(directoryId, platform) Method
Section titled “GetPlatformSpecificDirectoryId(directoryId, platform) Method”Gets the platform specific directory id for a directory. Most directories are not platform specific and return themselves.
Declaration
Section titled “Declaration”public static string GetPlatformSpecificDirectoryId( string directoryId, WixToolset.Data.Platform platform)Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| directoryId | string | Directory id to get platform specific. |
| platform | WixToolset.Data.Platform | Platform to use. |
Return value
Section titled “Return value”string Platform specific directory id.
IsStandardAction(actionName) Method
Section titled “IsStandardAction(actionName) Method”Find out if an action is a standard action.
Declaration
Section titled “Declaration”public static bool IsStandardAction( string actionName)Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| actionName | string | Name of the action. |
Return value
Section titled “Return value”bool true if the action is standard, false otherwise.
IsStandardDirectory(directoryId) Method
Section titled “IsStandardDirectory(directoryId) Method”Find out if a directory is a standard directory.
Declaration
Section titled “Declaration”public static bool IsStandardDirectory( string directoryId)Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| directoryId | string | Name of the directory. |
Return value
Section titled “Return value”bool true if the directory is standard, false otherwise.
IsStandardProperty(propertyName) Method
Section titled “IsStandardProperty(propertyName) Method”Find out if a property is a standard property.
Declaration
Section titled “Declaration”public static bool IsStandardProperty( string propertyName)Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
| propertyName | string | Name of the property. |
Return value
Section titled “Return value”bool true if a property is standard, false otherwise.
StandardActions() Method
Section titled “StandardActions() Method”Standard actions.
Declaration
Section titled “Declaration”public static System.Collections.Generic.IReadOnlyCollection<WixToolset.Data.Symbols.WixActionSymbol> StandardActions()StandardDirectoryIds() Method
Section titled “StandardDirectoryIds() Method”Standard directory identifiers.
Declaration
Section titled “Declaration”public static System.Collections.Generic.IReadOnlyCollection<System.String> StandardDirectoryIds()