Win32Messages
Win32Messages.Instance (HResult.WIN32) contains Microsoft's HResult code descriptions for Win32 (WIN32 facility).
HResult | Key | Text | Exception |
---|---|---|---|
0x800700C1 | WIN32.COR_E_BADEXEFORMAT | ||
0x80070006 | WIN32.E_HANDLE | ||
0x80070002 | WIN32.COR_E_FILENOTFOUND | The system cannot find the file specified. | System.IO.FileNotFoundException |
0x80070003 | WIN32.COR_E_DIRECTORYNOTFOUND | The system cannot find the path specified. | System.IO.DirectoryNotFoundException |
0x80070005 | WIN32.COR_E_UNAUTHORIZEDACCESS | Access is denied. | System.UnauthorizedAccessException |
0x8007000B | WIN32.COR_E_BADIMAGEFORMAT | An attempt was made to load a program with an incorrect format. | System.BadImageFormatException |
0x8007000E | WIN32.COR_E_OUTOFMEMORY | Ran out of memory | System.OutOfMemoryException |
0x80070026 | WIN32.COR_E_ENDOFSTREAM | Reached the end of the file. | System.IO.EndOfStreamException |
0x80070032 | WIN32.ERROR_NOT_SUPPORTED | The operation is not supported. | NotSupportedException |
0x80070057 | WIN32.COR_E_ARGUMENT | The parameter is incorrect. | System.ArgumentException |
0x800700CE | WIN32.COR_E_PATHTOOLONG | The filename or extension is too long. | System.IO.PathTooLongException |
0x80070216 | WIN32.COR_E_ARITHMETIC | Arithmetic result exceeded 32 bits. | System.ArithmeticException |
0x800703E9 | WIN32.COR_E_STACKOVERFLOW | Recursion too deep | StackOverflowException |
0x80070070 | WIN32.ERROR_DISK_FULL | There is not enough space on the disk. |
This document is partially derived from work with following license.
/*This file is a derivate of a source file that has following license (below). ======================================================================== The MIT License (MIT) Copyright (c) Microsoft Corporation Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ======================================================================*/