diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-31 16:27:49 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-10-31 16:27:49 -0700 |
commit | 55d6e4be43225184f9a656e6d9cc8fc1e8e7387b (patch) | |
tree | c382ef957455af8a39f80789dff9b112e97c2fe6 /tools/Sandcastle/Source/CCI/ExceptionStrings.cs | |
parent | 07a8ecbc4fc50d11179f7e0b3fadb9f2be430ae5 (diff) | |
parent | ebf5efb48cddbfaf08aec24117b7c5f9626f1c02 (diff) | |
download | DotNetOpenAuth-55d6e4be43225184f9a656e6d9cc8fc1e8e7387b.zip DotNetOpenAuth-55d6e4be43225184f9a656e6d9cc8fc1e8e7387b.tar.gz DotNetOpenAuth-55d6e4be43225184f9a656e6d9cc8fc1e8e7387b.tar.bz2 |
Merge branch 'contracts'
Diffstat (limited to 'tools/Sandcastle/Source/CCI/ExceptionStrings.cs')
-rw-r--r-- | tools/Sandcastle/Source/CCI/ExceptionStrings.cs | 480 |
1 files changed, 480 insertions, 0 deletions
diff --git a/tools/Sandcastle/Source/CCI/ExceptionStrings.cs b/tools/Sandcastle/Source/CCI/ExceptionStrings.cs new file mode 100644 index 0000000..cad0038 --- /dev/null +++ b/tools/Sandcastle/Source/CCI/ExceptionStrings.cs @@ -0,0 +1,480 @@ +// Copyright © Microsoft Corporation. +// This source file is subject to the Microsoft Permissive License. +// See http://www.microsoft.com/resources/sharedsource/licensingbasics/sharedsourcelicenses.mspx. +// All other rights reserved. + +using System; +using System.IO; +using System.Resources; + +#if CCINamespace +namespace Microsoft.Cci{ +#else +namespace System.Compiler +{ +#endif + sealed class ExceptionStrings + { + private readonly static WeakReference/*!*/ resMgr = new WeakReference(null); + + private ExceptionStrings() + { + } + + internal static System.Resources.ResourceManager/*!*/ ResourceManager + { + get + { + System.Resources.ResourceManager rMgr = ExceptionStrings.resMgr.Target as System.Resources.ResourceManager; + if (rMgr == null) + { + + rMgr = new System.Resources.ResourceManager("CCI.ExceptionStrings", typeof(ExceptionStrings).Assembly); + /* + #if CCINamespace + rMgr = new System.Resources.ResourceManager("Microsoft.Cci.ExceptionStrings", typeof(ExceptionStrings).Assembly); + #else + rMgr = new System.Resources.ResourceManager("System.Compiler.ExceptionStrings", typeof(ExceptionStrings).Assembly); + #endif + */ + ExceptionStrings.resMgr.Target = rMgr; + } + return rMgr; + } + } + internal static string/*!*/ AssemblyReferenceNotResolved + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("AssemblyReferenceNotResolved", null); + } + } + internal static string/*!*/ BadBlobHeapIndex + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadBlobHeapIndex", null); + } + } + internal static string/*!*/ BadCLIHeader + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadCLIHeader", null); + } + } + internal static string/*!*/ BadCOFFHeaderSignature + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadCOFFHeaderSignature", null); + } + } + internal static string/*!*/ BadConstantParentIndex + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadConstantParentIndex", null); + } + } + internal static string/*!*/ BadCustomAttributeTypeEncodedToken + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadCustomAttributeTypeEncodedToken", null); + } + } + internal static string/*!*/ BaddCalliSignature + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BaddCalliSignature", null); + } + } + internal static string/*!*/ BadExceptionHandlerType + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadExceptionHandlerType", null); + } + } + internal static string/*!*/ BadGuidHeapIndex + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadGuidHeapIndex", null); + } + } + internal static string/*!*/ BadMagicNumber + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMagicNumber", null); + } + } + internal static string/*!*/ BadMemberToken + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMemberToken", null); + } + } + internal static string/*!*/ BadMetadataHeaderSignature + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMetadataHeaderSignature", null); + } + } + internal static string/*!*/ BadMetadataInExportTypeTableNoSuchAssemblyReference + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMetadataInExportTypeTableNoSuchAssemblyReference", null); + } + } + internal static string/*!*/ BadMetadataInExportTypeTableNoSuchParentType + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMetadataInExportTypeTableNoSuchParentType", null); + } + } + internal static string/*!*/ BadMethodHeaderSection + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMethodHeaderSection", null); + } + } + internal static string/*!*/ BadMethodTypeParameterInPosition + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadMethodTypeParameterInPosition", null); + } + } + internal static string/*!*/ BadPEHeaderMagicNumber + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadPEHeaderMagicNumber", null); + } + } + internal static string/*!*/ BadSecurityPermissionSetBlob + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadSecurityPermissionSetBlob", null); + } + } + internal static string/*!*/ BadSerializedTypeName + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadSerializedTypeName", null); + } + } + internal static string/*!*/ BadStringHeapIndex + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadStringHeapIndex", null); + } + } + internal static string BadTargetPlatformLocation + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadTargetPlatformLocation", null); + } + } + internal static string BadTypeDefOrRef + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadTypeDefOrRef", null); + } + } + internal static string/*!*/ BadTypeParameterInPositionForType + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadTypeParameterInPositionForType", null); + } + } + internal static string/*!*/ BadUserStringHeapIndex + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("BadUserStringHeapIndex", null); + } + } + internal static string/*!*/ CannotLoadTypeExtension + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CannotLoadTypeExtension", null); + } + } + internal static string/*!*/ CollectionIsReadOnly + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CollectionIsReadOnly", null); + } + } + internal static string CouldNotFindExportedNestedTypeInType + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CouldNotFindExportedNestedTypeInType", null); + } + } + internal static string/*!*/ CouldNotFindExportedTypeInAssembly + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CouldNotFindExportedTypeInAssembly", null); + } + } + internal static string CouldNotFindExportedTypeInModule + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CouldNotFindExportedTypeInModule", null); + } + } + internal static string/*!*/ CouldNotFindReferencedModule + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CouldNotFindReferencedModule", null); + } + } + internal static string/*!*/ CouldNotResolveMemberReference + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CouldNotResolveMemberReference", null); + } + } + internal static string/*!*/ CouldNotResolveType + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CouldNotResolveType", null); + } + } + internal static string CouldNotResolveTypeReference + { + get + { + return ResourceManager.GetString("CouldNotResolveTypeReference", null); + } + } + internal static string/*!*/ CreateFileMappingReturnedErrorCode + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("CreateFileMappingReturnedErrorCode", null); + } + } + internal static string/*!*/ ENCLogTableEncountered + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("ENCLogTableEncountered", null); + } + } + internal static string/*!*/ ENCMapTableEncountered + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("ENCMapTableEncountered", null); + } + } + internal static string/*!*/ FileTooBig + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("FileTooBig", null); + } + } + internal static string/*!*/ GetReaderForFileReturnedUnexpectedHResult + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("GetReaderForFileReturnedUnexpectedHResult", null); + } + } + internal static string/*!*/ InternalCompilerError + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InternalCompilerError", null); + } + } + internal static string/*!*/ InvalidBaseClass + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InvalidBaseClass", null); + } + } + internal static string/*!*/ InvalidFatMethodHeader + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InvalidFatMethodHeader", null); + } + } + internal static string/*!*/ InvalidLocalSignature + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InvalidLocalSignature", null); + } + } + internal static string InvalidModuleTable + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InvalidModuleTable", null); + } + } + internal static string/*!*/ InvalidTypeTableIndex + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InvalidTypeTableIndex", null); + } + } + internal static string MalformedSignature + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("MalformedSignature", null); + } + } + internal static string/*!*/ MapViewOfFileReturnedErrorCode + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("MapViewOfFileReturnedErrorCode", null); + } + } + internal static string/*!*/ ModuleOrAssemblyDependsOnMoreRecentVersionOfCoreLibrary + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("ModuleOrAssemblyDependsOnMoreRecentVersionOfCoreLibrary", null); + } + } + internal static string/*!*/ ModuleError + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("ModuleError", null); + } + } + internal static string/*!*/ NoMetadataStream + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("NoMetadataStream", null); + } + } + internal static string/*!*/ PdbAssociatedWithFileIsOutOfDate + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("PdbAssociatedWithFileIsOutOfDate", null); + } + } + internal static string/*!*/ SecurityAttributeTypeDoesNotHaveADefaultConstructor + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("SecurityAttributeTypeDoesNotHaveADefaultConstructor", null); + } + } + internal static string/*!*/ TooManyMethodHeaderSections + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("TooManyMethodHeaderSections", null); + } + } + internal static string/*!*/ UnexpectedTypeInCustomAttribute + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnexpectedTypeInCustomAttribute", null); + } + } + internal static string/*!*/ UnknownConstantType + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnknownConstantType", null); + } + } + internal static string/*!*/ UnknownOpCode + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnknownOpCode", null); + } + } + internal static string/*!*/ UnknownOpCodeEncountered + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnknownOpCodeEncountered", null); + } + } + internal static string/*!*/ UnknownVirtualAddress + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnknownVirtualAddress", null); + } + } + internal static string/*!*/ UnresolvedAssemblyReferenceNotAllowed + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnresolvedAssemblyReferenceNotAllowed", null); + } + } + internal static string/*!*/ UnresolvedModuleReferenceNotAllowed + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnresolvedModuleReferenceNotAllowed", null); + } + } + internal static string/*!*/ UnsupportedTableEncountered + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("UnsupportedTableEncountered", null); + } + } + internal static string/*!*/ InvalidAssemblyStrongName + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("InvalidAssemblyStrongName", null); + } + } + internal static string/*!*/ KeyNeedsToBeGreaterThanZero + { + get + { + return /*^ (!) ^*/ ResourceManager.GetString("KeyNeedsToBeGreaterThanZero", null); + } + } + } +} |