ErrorHandler.ThrowOnFailure Method (Int32, [])

Checks if the parameter is a success or failure HRESULT and throws an exception if it is a failure that is not included in the array of well-known failures.

Namespace:  Microsoft.VisualStudio
Assembly:  Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)

Syntax

'宣言
Public Shared Function ThrowOnFailure ( _
    hr As Integer, _
    ParamArray expectedHRFailure As Integer() _
) As Integer
'使用
Dim hr As Integer
Dim expectedHRFailure As Integer()
Dim returnValue As Integer

returnValue = ErrorHandler.ThrowOnFailure(hr, _
    expectedHRFailure)
public static int ThrowOnFailure(
    int hr,
    params int[] expectedHRFailure
)
public:
static int ThrowOnFailure(
    int hr, 
    ... array<int>^ expectedHRFailure
)
public static function ThrowOnFailure(
    hr : int, 
    ... expectedHRFailure : int[]
) : int

Parameters

  • expectedHRFailure
    Type: []

    If hr is found in this array of expected failures no exception should be thrown.

Return Value

Type: System.Int32

The HRESULT.

Permissions

See Also

Concepts

HRESULT Information in Managed Code

Reference

ErrorHandler Class

ErrorHandler Members

ThrowOnFailure Overload

Microsoft.VisualStudio Namespace