Marshal.ThrowExceptionForHR Method (Int32)
Throws an exception with a specific failure HRESULT value.
Namespace: System.Runtime.InteropServices
Assembly: mscorlib (in mscorlib.dll)
Parameters
- errorCode
- Type: System.Int32
The HRESULT corresponding to the desired exception.
This method creates an exception object for the specified failure HRESULT. If the HRESULT is 0 or positive (a success code), the method returns without creating or throwing an exception.
Note that the ThrowExceptionForHR(Int32) method returns an exception based on the IErrorInfo Interface of the current thread if one is set. When this happens, the errorCode parameter is ignored.
Some failure HRESULTs map to defined exceptions, whereas others do not. If the HRESULT maps to a defined exception, ThrowExceptionForHR creates an instance of the exception and throws it. Otherwise, it creates an instance of System.Runtime.InteropServices.COMException, initializes the error code field with the HRESULT, and throws that exception. When ThrowExceptionForHR is invoked, it attempts to retrieve extra information regarding the error by using the unmanaged GetErrorInfo Function function.
For the mapping from each HRESULT to its comparable exception class in the .NET Framework, see How to: Map HRESULTs and Exceptions.
Occasionally, ThrowExceptionForHR might return an exception from a previous COM call. In this case, you can use the following workaround and pass IntPtr(-1) as the second parameter (errorInfo):
[SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)] public static void ThrowExceptionForHR(int errorCode,IntPtr errorInfo)
- SecurityCriticalAttribute
requires full trust for the immediate caller. This member cannot be used by partially trusted or transparent code.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.