download __hresults.cs
Language: C#
Copyright: (c) 2006 Microsoft Corporation. All rights reserved.
LOC: 95
Project Info
Rotor IL Logger(rotorillogger)
Server: CodePlex1
Type: svn
...ger\svn\clr\src\bcl\system\
   __filters.cs
   __hresults.cs
   _localdatastore.cs
   _localdatastoremgr.cs
   ...ssviolationexception.cs
   activationarguments.cs
   activator.cs
   appdomain.cs
   appdomainattributes.cs
   appdomainmanager.cs
   appdomainsetup.cs
   ...ainunloadedexception.cs
   applicationactivator.cs
   applicationexception.cs
   applicationid.cs
   argiterator.cs
   argumentexception.cs
   argumentnullexception.cs
   ...toutofrangeexception.cs
   arithmeticexception.cs
   array.cs
   arraysegment.cs
   ...ypemismatchexception.cs
   asynccallback.cs
   attribute.cs
   attributetargets.cs
   attributeusageattribute.cs
   badimageformatexception.cs
   bcldebug.cs
   bitconverter.cs
   boolean.cs
   buffer.cs
   byte.cs
   ...adappdomainexception.cs
   cfgparser.cs
   char.cs
   charenumerator.cs
   clscompliantattribute.cs
   cominterfaces.cs
   compatibilityflags.cs
   ...usmethodframegeneric.cs
   console.cs
   consolecanceleventargs.cs
   consolespecialkey.cs
   contextboundobject.cs
   contextmarshalexception.cs
   contextstaticattribute.cs
   convert.cs
   currency.cs
   currenttimezone.cs
   datamisalignedexception.cs
   datetime.cs
   datetimekind.cs
   dayofweek.cs
   dbnull.cs
   decimal.cs
   defaultbinder.cs
   delegate.cs
   ...eserializationholder.cs
   dividebyzeroexception.cs
   dllnotfoundexception.cs
   double.cs
   ...ewaitobjectexception.cs
   empty.cs
   ...intnotfoundexception.cs
   enum.cs
   environment.cs
   eventargs.cs
   eventhandler.cs
   exception.cs
   ...utionengineexception.cs
   fieldaccessexception.cs
   flagsattribute.cs
   formatexception.cs
   gc.cs
   guid.cs
   iappdomain.cs
   iappdomainsetup.cs
   iasyncresult.cs
   icloneable.cs
   icomparable.cs
   iconvertible.cs
   icustomformatter.cs
   idisposable.cs
   iequatable.cs
   iformatprovider.cs
   iformattable.cs
   ...xoutofrangeexception.cs
   ...cientmemoryexception.cs
   int16.cs
   int32.cs
   int64.cs
   internal.cs
   intptr.cs
   invalidcastexception.cs
   ...idoperationexception.cs
   invalidprogramexception.cs
   iserviceobjectprovider.cs
   marshalbyrefobject.cs
   math.cs
   mda.cs
   memberaccessexception.cs
   methodaccessexception.cs
   midpointrounding.cs
   missingfieldexception.cs
   missingmemberexception.cs
   missingmethodexception.cs
   multicastdelegate.cs
   ...otsupportedexception.cs
   ndirectmethodframeex.cs
   nonserializedattribute.cs
   ...initenumberexception.cs
   notimplementedexception.cs
   notsupportedexception.cs
   nullable.cs
   nullreferenceexception.cs
   number.cs
   object.cs
   objectdisposedexception.cs
   obsoleteattribute.cs
   oleautbinder.cs
   operatingsystem.cs
   ...ioncanceledexception.cs
   outofmemoryexception.cs
   overflowexception.cs
   paramarrayattribute.cs
   parsenumbers.cs
   platformid.cs
   ...otsupportedexception.cs
   random.cs
   rankexception.cs
   resid.cs
   rttype.cs
   runtimeargumenthandle.cs
   runtimehandles.cs
   sbyte.cs
   serializableattribute.cs
   sharedstatics.cs
   single.cs
   stackoverflowexception.cs
   string.cs
   stringcomparer.cs
   stringcomparison.cs
   stringfreezingattribute.cs
   systemexception.cs
   threadattributes.cs
   threadstaticattribute.cs
   throwhelper.cs
   timeoutexception.cs
   timespan.cs
   timezone.cs
   type.cs
   typecode.cs
   typedreference.cs
   ...tializationexception.cs
   typeloadexception.cs
   typeunloadedexception.cs
   uint16.cs
   uint32.cs
   uint64.cs
   uintptr.cs
   ...rizedaccessexception.cs
   ...edexceptioneventargs.cs
   ...xceptioneventhandler.cs
   ...yserializationholder.cs
   unsafecharbuffer.cs
   valuetype.cs
   variant.cs
   version.cs
   void.cs
   weakreference.cs
   ...gnorememberattribute.cs

// ==++==
// 
//   
//    Copyright (c) 2006 Microsoft Corporation.  All rights reserved.
//   
//    The use and distribution terms for this software are contained in the file
//    named license.txt, which can be found in the root of this distribution.
//    By using this software in any fashion, you are agreeing to be bound by the
//    terms of this license.
//   
//    You must not remove this notice, or any other, from this software.
//   
// 
// ==--==
//=============================================================================
//
// Class: __HResults
//
// Purpose: Define HResult constants. Every exception has one of these.
//
// Date: 98/08/31 11:57:11 AM
//
//===========================================================================*/
namespace System {
    // Note: FACILITY_URT is defined as 0x13 (0x8013xxxx).  Within that
    // range, 0x1yyy is for Runtime errors (used for Security, Metadata, etc).
    // In that subrange, 0x15zz and 0x16zz have been allocated for classlib-type 
    // HResults. Also note that some of our HResults have to map to certain 
    // COM HR's, etc.
    
    // Another arbitrary decision...  Feel free to change this, as long as you
    // renumber the HResults yourself (and update rexcep.h).
    // Reflection will use 0x1600 -> 0x161f.  IO will use 0x1620 -> 0x163f.
    // Security will use 0x1640 -> 0x165f
    
    // There are __HResults files in the IO, Remoting, Reflection & 
    // Security/Util directories as well, so choose your HResults carefully.
    
    using System;
    internal static class __HResults
    {
        internal const int E_FAIL = unchecked((int)0x80004005); 
        internal const int E_POINTER = unchecked((int)0x80004003); 
        internal const int E_NOTIMPL = unchecked((int)0x80004001); 
        internal const int COR_E_AMBIGUOUSMATCH = unchecked((int)0x8000211D); 
        internal const int COR_E_APPDOMAINUNLOADED = unchecked((int)0x80131014); 
        internal const int COR_E_APPLICATION = unchecked((int)0x80131600); 
        internal const int COR_E_ARGUMENT = unchecked((int)0x80070057); 
        internal const int COR_E_ARGUMENTOUTOFRANGE = unchecked((int)0x80131502); 
        internal const int COR_E_ARITHMETIC = unchecked((int)0x80070216); 
        internal const int COR_E_ARRAYTYPEMISMATCH = unchecked((int)0x80131503);      
        internal const int COR_E_BADIMAGEFORMAT = unchecked((int)0x8007000B);     
        internal const int COR_E_TYPEUNLOADED = unchecked((int)0x80131013); 
        internal const int COR_E_CANNOTUNLOADAPPDOMAIN = unchecked((int)0x80131015); 
        internal const int COR_E_COMEMULATE = unchecked((int)0x80131535); 
        internal const int COR_E_CONTEXTMARSHAL = unchecked((int)0x80131504); 
        internal const int COR_E_DATAMISALIGNED = unchecked((int)0x80131541);
        internal const int COR_E_TIMEOUT = unchecked((int)0x80131505);        
        internal const int COR_E_CUSTOMATTRIBUTEFORMAT = unchecked((int)0x80131605); 
        internal const int COR_E_DIVIDEBYZERO = unchecked((int)0x80020012); // DISP_E_DIVBYZERO
        internal const int COR_E_DUPLICATEWAITOBJECT = unchecked((int)0x80131529);
        internal const int COR_E_EXCEPTION = unchecked((int)0x80131500); 
        internal const int COR_E_EXECUTIONENGINE = unchecked((int)0x80131506); 
        internal const int COR_E_FIELDACCESS = unchecked((int)0x80131507); 
        internal const int COR_E_FORMAT = unchecked((int)0x80131537); 
        internal const int COR_E_INDEXOUTOFRANGE = unchecked((int)0x80131508); 
        internal const int COR_E_INSUFFICIENTMEMORY = unchecked((int)0x8013153D);
        internal const int COR_E_INVALIDCAST = unchecked((int)0x80004002); 
        internal const int COR_E_INVALIDCOMOBJECT = unchecked((int)0x80131527);
        internal const int COR_E_INVALIDFILTERCRITERIA = unchecked((int)0x80131601); 
        internal const int COR_E_INVALIDOLEVARIANTTYPE = unchecked((int)0x80131531);   
        internal const int COR_E_INVALIDOPERATION = unchecked((int)0x80131509); 
        internal const int COR_E_INVALIDPROGRAM = unchecked((int)0x8013153A); 
        internal const int COR_E_KEYNOTFOUND = unchecked((int)0x80131577);
        internal const int COR_E_MARSHALDIRECTIVE = unchecked((int)0x80131535); 
        internal const int COR_E_MEMBERACCESS = unchecked((int)0x8013151A); 
        internal const int COR_E_METHODACCESS = unchecked((int)0x80131510); 
        internal const int COR_E_MISSINGFIELD = unchecked((int)0x80131511); 
        internal const int COR_E_MISSINGMANIFESTRESOURCE = unchecked((int)0x80131532);
        internal const int COR_E_MISSINGMEMBER = unchecked((int)0x80131512);
        internal const int COR_E_MISSINGMETHOD = unchecked((int)0x80131513); 
        internal const int COR_E_MISSINGSATELLITEASSEMBLY = unchecked((int)0x80131536);
        internal const int COR_E_MULTICASTNOTSUPPORTED = unchecked((int)0x80131514); 
        internal const int COR_E_NOTFINITENUMBER = unchecked((int)0x80131528);
        internal const int COR_E_PLATFORMNOTSUPPORTED = unchecked((int)0x80131539); 
        internal const int COR_E_NOTSUPPORTED = unchecked((int)0x80131515); 
        internal const int COR_E_NULLREFERENCE = unchecked((int)0x80004003); 
        internal const int COR_E_OBJECTDISPOSED = unchecked((int)0x80131622);
        internal const int COR_E_OPERATIONCANCELED = unchecked((int)0x8013153B);
        internal const int COR_E_OUTOFMEMORY = unchecked((int)0x8007000E); 
        internal const int COR_E_OVERFLOW = unchecked((int)0x80131516); 
        internal const int COR_E_RANK = unchecked((int)0x80131517); 
        internal const int COR_E_REFLECTIONTYPELOAD    = unchecked((int)0x80131602); 
        internal const int COR_E_RUNTIMEWRAPPED = unchecked((int)0x8013153E);
        internal const int COR_E_SAFEARRAYRANKMISMATCH = unchecked((int)0x80131538); 
        internal const int COR_E_SAFEARRAYTYPEMISMATCH = unchecked((int)0x80131533); 
        internal const int COR_E_SAFEHANDLEMISSINGATTRIBUTE = unchecked((int)0x80131623);
        internal const int COR_E_SECURITY = unchecked((int)0x8013150A); 
        internal const int COR_E_SERIALIZATION = unchecked((int)0x8013150C);
        internal const int COR_E_SEMAPHOREFULL = unchecked((int)0x8013152B);
        internal const int COR_E_WAITHANDLECANNOTBEOPENED = unchecked((int)0x8013152C);
        internal const int COR_E_ABANDONEDMUTEX = unchecked((int)0x8013152D);
        internal const int COR_E_STACKOVERFLOW = unchecked((int)0x800703E9); 
        internal const int COR_E_SYNCHRONIZATIONLOCK = unchecked((int)0x80131518); 
        internal const int COR_E_SYSTEM = unchecked((int)0x80131501); 
        internal const int COR_E_TARGET = unchecked((int)0x80131603); 
        internal const int COR_E_TARGETINVOCATION = unchecked((int)0x80131604); 
        internal const int COR_E_TARGETPARAMCOUNT = unchecked((int)0x8002000e);
        internal const int COR_E_THREADABORTED = unchecked((int)0x80131530); 
        internal const int COR_E_THREADINTERRUPTED = unchecked((int)0x80131519); 
        internal const int COR_E_THREADSTATE = unchecked((int)0x80131520); 
        internal const int COR_E_THREADSTOP = unchecked((int)0x80131521); 
        internal const int COR_E_THREADSTART = unchecked((int)0x80131525); 
        internal const int COR_E_TYPEINITIALIZATION = unchecked((int)0x80131534); 
        internal const int COR_E_TYPELOAD = unchecked((int)0x80131522); 
        internal const int COR_E_ENTRYPOINTNOTFOUND = unchecked((int)0x80131523); 
        internal const int COR_E_DLLNOTFOUND = unchecked((int)0x80131524); 
        internal const int COR_E_UNAUTHORIZEDACCESS = unchecked((int)0x80070005); 
        internal const int COR_E_UNSUPPORTEDFORMAT = unchecked((int)0x80131523); 
        internal const int COR_E_VERIFICATION = unchecked((int)0x8013150D); 
        internal const int COR_E_HOSTPROTECTION = unchecked((int)0x80131640);
        internal const int CORSEC_E_MIN_GRANT_FAIL = unchecked((int)0x80131417);
        internal const int CORSEC_E_NO_EXEC_PERM = unchecked((int)0x80131418);
        internal const int CORSEC_E_POLICY_EXCEPTION = unchecked((int)0x80131416);
        internal const int CORSEC_E_XMLSYNTAX = unchecked((int)0x80131418);
        internal const int NTE_FAIL = unchecked((int)0x80090020); 
        internal const int CORSEC_E_CRYPTO = unchecked((int)0x80131430);
        internal const int CORSEC_E_CRYPTO_UNEX_OPER = unchecked((int)0x80131431);
        internal const int FUSION_E_REF_DEF_MISMATCH = unchecked((int)0x80131040);
        internal const int FUSION_E_INVALID_NAME = unchecked((int)0x80131047);
    }
}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us