Hresults Windows
Moreover, the window to enable/disable Windows features is empty, but I am sure that the framework 4.5 is installed. The system is quite new (I upgraded it from windows 7 some month ago), there are very few software installed and it is protected with antivirus software. Thank you in advance. Submit and view feedback for. This product This page. View all page feedback.
Definition
Gets or sets HRESULT, a coded numerical value that is assigned to a specific exception.
Property Value
- Int32
The HRESULT value.
Examples
The following code example defines a derived Exception
class that sets the HResult
property to a custom value in its constructor.
Cached
Remarks
HRESULT is a 32-bit value, divided into three different fields: a severity code, a facility code, and an error code. The severity code indicates whether the return value represents information, warning, or error. The facility code identifies the area of the system responsible for the error. The error code is a unique number that is assigned to represent the exception. Each exception is mapped to a distinct HRESULT. When managed code throws an exception, the runtime passes the HRESULT to the COM client. When unmanaged code returns an error, the HRESULT is converted to an exception, which is then thrown by the runtime. For information about HRESULT values and their corresponding .NET Framework exceptions, see How to: Map HRESULTs and Exceptions. See Common HRESULT Values in the Windows documentation for a list of the values you are most likely to encounter.
Starting with the .NET Framework 4.5, the HResult property's setter is protected, whereas its getter is public. In previous versions of the .NET Framework, both getter and setter are protected.