Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / clr / src / BCL / System / TypeInitializationException.cs / 1 / TypeInitializationException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: TypeInitializationException ** ** ** Purpose: The exception class to wrap exceptions thrown by ** a type's class initializer (.cctor). This is sufficiently ** distinct from a TypeLoadException, which means we couldn't ** find the type. ** ** =============================================================================*/ using System; using System.Runtime.Serialization; using System.Globalization; using System.Security.Permissions; namespace System { [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public sealed class TypeInitializationException : SystemException { private String _typeName; // This exception is not creatable without specifying the // inner exception. private TypeInitializationException() : base(Environment.GetResourceString("TypeInitialization_Default")) { SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); } // This is called from within the runtime. I believe this is necessary // for Interop only, though it's not particularly useful. private TypeInitializationException(String message) : base(message) { SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); } public TypeInitializationException(String fullTypeName, Exception innerException) : base(String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("TypeInitialization_Type"), fullTypeName), innerException) { _typeName = fullTypeName; SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); } internal TypeInitializationException(SerializationInfo info, StreamingContext context) : base(info, context) { _typeName = info.GetString("TypeName"); } public String TypeName { get { if (_typeName == null) { return String.Empty; } return _typeName; } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); info.AddValue("TypeName",TypeName,typeof(String)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: TypeInitializationException ** ** ** Purpose: The exception class to wrap exceptions thrown by ** a type's class initializer (.cctor). This is sufficiently ** distinct from a TypeLoadException, which means we couldn't ** find the type. ** ** =============================================================================*/ using System; using System.Runtime.Serialization; using System.Globalization; using System.Security.Permissions; namespace System { [Serializable()] [System.Runtime.InteropServices.ComVisible(true)] public sealed class TypeInitializationException : SystemException { private String _typeName; // This exception is not creatable without specifying the // inner exception. private TypeInitializationException() : base(Environment.GetResourceString("TypeInitialization_Default")) { SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); } // This is called from within the runtime. I believe this is necessary // for Interop only, though it's not particularly useful. private TypeInitializationException(String message) : base(message) { SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); } public TypeInitializationException(String fullTypeName, Exception innerException) : base(String.Format(CultureInfo.CurrentCulture, Environment.GetResourceString("TypeInitialization_Type"), fullTypeName), innerException) { _typeName = fullTypeName; SetErrorCode(__HResults.COR_E_TYPEINITIALIZATION); } internal TypeInitializationException(SerializationInfo info, StreamingContext context) : base(info, context) { _typeName = info.GetString("TypeName"); } public String TypeName { get { if (_typeName == null) { return String.Empty; } return _typeName; } } [SecurityPermissionAttribute(SecurityAction.LinkDemand, Flags=SecurityPermissionFlag.SerializationFormatter)] public override void GetObjectData(SerializationInfo info, StreamingContext context) { base.GetObjectData(info, context); info.AddValue("TypeName",TypeName,typeof(String)); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EventLogPermission.cs
- ButtonAutomationPeer.cs
- HwndStylusInputProvider.cs
- BaseComponentEditor.cs
- NegationPusher.cs
- ThreadNeutralSemaphore.cs
- NetCodeGroup.cs
- DataGridColumn.cs
- DataPagerFieldCommandEventArgs.cs
- CloudCollection.cs
- ComponentResourceKey.cs
- BamlStream.cs
- LinearGradientBrush.cs
- DbDataAdapter.cs
- DesignerSerializerAttribute.cs
- CallSiteBinder.cs
- MdImport.cs
- WSUtilitySpecificationVersion.cs
- PersonalizationDictionary.cs
- Int32.cs
- SerializationAttributes.cs
- DesignerVerb.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- HttpResponseWrapper.cs
- VerificationException.cs
- FontEmbeddingManager.cs
- SafeReadContext.cs
- OleDbConnectionInternal.cs
- StateBag.cs
- AutomationElement.cs
- MetadataItemEmitter.cs
- Int16Storage.cs
- DataGridViewColumnEventArgs.cs
- CollectionViewGroupInternal.cs
- Rss20FeedFormatter.cs
- JapaneseLunisolarCalendar.cs
- CurrentChangingEventManager.cs
- BindingMAnagerBase.cs
- WorkflowService.cs
- CreateDataSourceDialog.cs
- EraserBehavior.cs
- controlskin.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- WorkflowMessageEventArgs.cs
- WebConvert.cs
- CodeLabeledStatement.cs
- BinaryObjectWriter.cs
- SiteMapDataSourceView.cs
- EqualityComparer.cs
- CodeExpressionRuleDeclaration.cs
- MouseBinding.cs
- SharedStream.cs
- ZipArchive.cs
- DataTransferEventArgs.cs
- ImageField.cs
- EndpointAddress10.cs
- _AutoWebProxyScriptHelper.cs
- SettingsPropertyWrongTypeException.cs
- BamlWriter.cs
- CodeSubDirectory.cs
- SimpleMailWebEventProvider.cs
- ToolStripDropDownButton.cs
- DataGridDefaultColumnWidthTypeConverter.cs
- Attributes.cs
- ResourcePart.cs
- BindingMemberInfo.cs
- StrongNameKeyPair.cs
- X509ChainElement.cs
- AppSettingsReader.cs
- DynamicDocumentPaginator.cs
- securitycriticaldata.cs
- DataGridViewCellParsingEventArgs.cs
- ExpressionBinding.cs
- TextRange.cs
- ImageConverter.cs
- Currency.cs
- GridEntryCollection.cs
- SimpleBitVector32.cs
- WinInet.cs
- _CommandStream.cs
- externdll.cs
- MsmqProcessProtocolHandler.cs
- Rijndael.cs
- _ProxyRegBlob.cs
- SafeRegistryKey.cs
- ListBindingHelper.cs
- ComponentEditorPage.cs
- x509store.cs
- NumberSubstitution.cs
- XmlDeclaration.cs
- AsyncPostBackTrigger.cs
- SystemFonts.cs
- ToolboxItemImageConverter.cs
- DrawingImage.cs
- TableLayoutPanel.cs
- CacheModeValueSerializer.cs
- DefaultTextStore.cs
- FieldDescriptor.cs
- Tile.cs
- AuthenticationModulesSection.cs