2

In the Windows Runtime the DOM classes (XmlDocument) result in case of errors in a COM error with HRESULT value. Most of the error codes are documented (for MSXML) in the MSXML documentation / XML Error Messages.

But I could not find the documentation of other error codes. For example when trying to load an XML document having elements named using a namespace prefix that is not declared, HRESULT 0xC00CE01D results. The HRESULT codes in the mentioned documentation start with 0xC00CEE00, 0xC00CE01D is not mentioned there. I suppose there is a whole range of HRESULT values missing in the documentation (possible 0xC00CE000 to 0xC00CEDFF).

Does anyone know where I could find the documentation of missing HRESULT values for XML?

4

1 回答 1

1

请参阅 Microsoft XML Lite 文档

错误代码在 xmllite.h 中定义。其中许多与 MSXML 中的错误相同。

于 2014-02-08T20:34:08.053 回答