Throws an exception with a specific failure HRESULT, based on the specified IErrorInfo interface.
- errorCode
The HRESULT corresponding to the desired exception.
- errorInfo
A pointer to the IErrorInfo interface that provides more information about the error. You can specify IntPtr(0) to use the current IErrorInfo interface, or IntPtr(-1) to ignore the current IErrorInfo interface and construct the exception just from the error code.
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.
The Marshal.ThrowExceptionForHR(int, IntPtr) method releases the errorInfo parameter, decreasing the COM reference count of the IErrorInfo interface.
Note that the Marshal.ThrowExceptionForHR(int, IntPtr) 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, Marshal.ThrowExceptionForHR(int) 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. The errorInfo parameter is used to retrieve extra information regarding the error.
For the mapping from each HRESULT to its comparable exception class in the .NET Framework, see How to: Map HRESULTs and Exceptions.