SIL.FieldWorks.WindowsInstallerQuery.IsThisInstalled C# (CSharp) Méthode

IsThisInstalled() public static méthode

Check the installer status to see if FW is installed on the user's machine. If not, it can be assumed we are running on a developer's machine.
public static IsThisInstalled ( ) : bool
Résultat bool
		public static bool IsThisInstalled()
		{
			string productName;

			var status = GetProductInfo(InstalledProductNameProperty, out productName);

			return status != ErrorUnknownProduct;
		}