| File: CorDbHResults.cs | Web Access |
| Project: src\runtime\src\native\managed\cdac\Microsoft.Diagnostics.DataContractReader.Abstractions\Microsoft.Diagnostics.DataContractReader.Abstractions.csproj (Microsoft.Diagnostics.DataContractReader.Abstractions) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Diagnostics.DataContractReader; public static class CorDbgHResults { public const int E_UNEXPECTED = unchecked((int)0x8000FFFF); public const int CORDBG_E_NOTREADY = unchecked((int)0x80131c10); public const int CORDBG_E_BAD_THREAD_STATE = unchecked((int)0x8013132d); public const int CORDBG_E_READVIRTUAL_FAILURE = unchecked((int)0x80131c49); public const int ERROR_BUFFER_OVERFLOW = unchecked((int)0x8007006F); // HRESULT_FROM_WIN32(ERROR_BUFFER_OVERFLOW) public const int ERROR_INSUFFICIENT_BUFFER = unchecked((int)0x8007007A); // HRESULT_FROM_WIN32(ERROR_INSUFFICIENT_BUFFER) public const int CORDBG_E_CLASS_NOT_LOADED = unchecked((int)0x80131303); public const int CORDBG_E_FUNCTION_NOT_IL = unchecked((int)0x8013130a); public const int CORDBG_E_TARGET_INCONSISTENT = unchecked((int)0x80131c36); public const int CORDBG_E_TARGET_READONLY = unchecked((int)0x80131c38); public const int CORDBG_S_NOT_ALL_BITS_SET = unchecked((int)0x00131c13); public const int CORDBG_E_NON_MATCHING_CONTEXT = unchecked((int)0x80131327); public const int CORDBG_E_UNSUPPORTED_DELEGATE = unchecked((int)0x80131c68); public const int CORDBG_E_ENC_HANGING_FIELD = unchecked((int)0x80131342); public const int CLDB_E_FILE_CORRUPT = unchecked((int)0x8013110e); public const int CORDBG_E_MISSING_METADATA = unchecked((int)0x80131c35); }