Skip to content

TransformInfo Class

Contains properties of a transform package (.MST).

MethodDescription
ToString()Returns the name of the transform.
PropertyDescription
NameGets the filename of the transform.
TargetLanguageGets the target language of the transform, or 0 if the transform is language-neutral.
TargetPlatformGets the target platform of the transform.
TargetProductCodeGets the target product code of the transform.
TargetProductVersionGets the target product version of the transform.
UpgradeCodeGets the upgrade code of the transform.
UpgradeProductCodeGets the upgrade product code of the transform.
UpgradeProductVersionGets the upgrade product version of the transform.
ValidationsGets the validation flags specified when the transform was generated.
WixToolset.Dtf.WindowsInstaller.Package.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8

Returns the name of the transform.

public string ToString()

Gets the filename of the transform.

public string Name { get; set; }

Gets the target language of the transform, or 0 if the transform is language-neutral.

public int TargetLanguage { get; set; }

Gets the target platform of the transform.

public string TargetPlatform { get; set; }

Gets the target product code of the transform.

public string TargetProductCode { get; set; }

Gets the target product version of the transform.

public string TargetProductVersion { get; set; }

Gets the upgrade code of the transform.

public string UpgradeCode { get; set; }

Gets the upgrade product code of the transform.

public string UpgradeProductCode { get; set; }

Gets the upgrade product version of the transform.

public string UpgradeProductVersion { get; set; }

Gets the validation flags specified when the transform was generated.

public WixToolset.Dtf.WindowsInstaller.TransformValidations Validations { get; set; }