Compartilhar via


Método Marshal.GetExceptionForHR (Int32)

 

Dica

The .NET API Reference documentation has a new home. Visit the .NET API Browser on docs.microsoft.com to see the new experience.

Converte o código de erro HRESULT especificado em um objeto Exception correspondente.

Namespace:   System.Runtime.InteropServices
Assembly:  mscorlib (em mscorlib.dll)

Sintaxe

[SecurityCriticalAttribute]
public static Exception GetExceptionForHR(
    int errorCode
)
public:
[SecurityCriticalAttribute]
static Exception^ GetExceptionForHR(
    int errorCode
)
[<SecurityCriticalAttribute>]
static member GetExceptionForHR : 
        errorCode:int -> Exception
<SecurityCriticalAttribute>
Public Shared Function GetExceptionForHR (
    errorCode As Integer
) As Exception

Parâmetros

Valor Retornado

Type: System.Exception

Um objeto que representa o HRESULT convertido.

Comentários

Use o GetExceptionForHR método para obter um Exception com base em um HRESULT sem a necessidade de chamar o ThrowExceptionForHR método e capturar a exceção.

Atual IErrorInfo interface é usada para construir a exceção.

Para o mapeamento de cada HRESULT para sua classe de exceção comparáveis no .NET Framework, consulte Como mapear HRESULTs e exceções.

Segurança

SecurityCriticalAttribute

requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.

Informações de Versão

Plataforma Universal do Windows
Disponível desde 8
.NET Framework
Disponível desde 2.0
Biblioteca de Classes Portátil
Com suporte no: plataformas portáteis do .NET
Silverlight
Disponível desde 2.0
Windows Phone Silverlight
Disponível desde 7.0
Windows Phone
Disponível desde 8.1

Confira Também

ThrowExceptionForHR
GetExceptionForHR Sobrecarga
Classe Marshal
Namespace System.Runtime.InteropServices
IErrorInfo Interface

Retornar ao início