ErrorHandler Class

Provides methods for dealing with common COM error codes.

Inheritance Hierarchy

Object
  Microsoft.VisualStudio.ErrorHandler

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

Syntax

'Declaration
Public NotInheritable Class ErrorHandler
public sealed class ErrorHandler
public ref class ErrorHandler sealed
[<Sealed>]
type ErrorHandler =  class end
public final class ErrorHandler

The ErrorHandler type exposes the following members.

Methods

  Name Description
Public methodStatic member CallWithCOMConvention(Action, Boolean) Use this method when an interop interface might be implemented by managed code, and it is expected to return HRESULT error codes but also throws exceptions. This method catches all except the critical exceptions and returns the corresponding HRESULT for the caught exception.
Public methodStatic member CallWithCOMConvention(Func<Int32>, Boolean)
Public method Equals Determines whether the specified object is equal to the current object. (Inherited from Object.)
Public methodStatic member Failed Determines whether an HRESULT is an error return code.
Public method GetHashCode Serves as the default hash function. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public methodStatic member IsCriticalException Determines whether the specified exception is critical.
Public methodStatic member IsRejectedRpcCall Determines whether the parameter is a failure HRESULT that indicates a failed RPC call that may succeed if retried at a later time.
Public methodStatic member Succeeded Determines whether an HRESULT is a success return code.
Public methodStatic member ThrowOnFailure(Int32) Determines whether the parameter is a success or failure HRESULT and throws an exception in case of failure.
Public methodStatic member ThrowOnFailure(Int32, array<Int32[]) Determines whether 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.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.VisualStudio Namespace

Other Resources

HRESULT Information in Managed Code