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