AcManager.Controls.Helpers.ShellLink.VerifySucceeded C# (CSharp) Méthode

VerifySucceeded() public static méthode

public static VerifySucceeded ( uint hresult ) : void
hresult uint
Résultat void
        public static void VerifySucceeded(uint hresult) {
            if (hresult > 1)
                throw new InvalidOperationException("Failed with HRESULT: " +
                                                    hresult.ToString("X"));
        }