Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / TypeInitializationException.cs / 1305376 / 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(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; } } [System.Security.SecurityCritical] // auto-generated_required 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(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; } } [System.Security.SecurityCritical] // auto-generated_required 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
- UnsafeNativeMethodsPenimc.cs
- TextWriterTraceListener.cs
- Accessible.cs
- RelatedCurrencyManager.cs
- TouchesCapturedWithinProperty.cs
- DependencyObject.cs
- CorrelationResolver.cs
- ChannelSinkStacks.cs
- PrinterUnitConvert.cs
- InkCanvasSelection.cs
- ResourceLoader.cs
- XmlBinaryReaderSession.cs
- MetaModel.cs
- ObjectStateFormatter.cs
- CompressedStack.cs
- PersonalizationProvider.cs
- MenuItemBindingCollection.cs
- Misc.cs
- BinaryFormatter.cs
- DocumentPageView.cs
- WebBrowsableAttribute.cs
- SqlRowUpdatingEvent.cs
- ChildDocumentBlock.cs
- PassportAuthenticationEventArgs.cs
- newitemfactory.cs
- ApplicationCommands.cs
- TreeNodeStyleCollection.cs
- Schema.cs
- CategoryNameCollection.cs
- ApplicationActivator.cs
- DesignUtil.cs
- InstanceLockException.cs
- View.cs
- autovalidator.cs
- StyleXamlParser.cs
- SoapMessage.cs
- CheckBoxStandardAdapter.cs
- SmiEventSink_Default.cs
- SQLChars.cs
- HorizontalAlignConverter.cs
- Application.cs
- LookupBindingPropertiesAttribute.cs
- TreeViewBindingsEditorForm.cs
- OleCmdHelper.cs
- TemplateComponentConnector.cs
- MessageSmuggler.cs
- IdleTimeoutMonitor.cs
- FrameworkElement.cs
- ConstraintConverter.cs
- MasterPage.cs
- CodeAttributeArgumentCollection.cs
- SystemResources.cs
- TableColumn.cs
- TextBlock.cs
- TcpProcessProtocolHandler.cs
- TransactionManager.cs
- GPPOINT.cs
- Grid.cs
- ObjectQueryExecutionPlan.cs
- ColumnCollection.cs
- PseudoWebRequest.cs
- ProtocolImporter.cs
- ReflectionPermission.cs
- SiblingIterators.cs
- DesignerTransaction.cs
- ValueUnavailableException.cs
- AnimationLayer.cs
- DataIdProcessor.cs
- DataException.cs
- ContainerControl.cs
- RichTextBox.cs
- NativeMethods.cs
- ContentTextAutomationPeer.cs
- ThreadStaticAttribute.cs
- PersonalizationProviderHelper.cs
- TextTreePropertyUndoUnit.cs
- TagPrefixAttribute.cs
- PictureBox.cs
- HighContrastHelper.cs
- ObjectDataSourceView.cs
- MonthChangedEventArgs.cs
- ProfileGroupSettingsCollection.cs
- TrimSurroundingWhitespaceAttribute.cs
- WindowsAuthenticationModule.cs
- ADConnectionHelper.cs
- FlowchartStart.xaml.cs
- EnumerableRowCollection.cs
- IERequestCache.cs
- MemoryFailPoint.cs
- SystemDiagnosticsSection.cs
- CngAlgorithm.cs
- DesignerDataSchemaClass.cs
- ComponentDispatcherThread.cs
- HashSetDebugView.cs
- VersionPair.cs
- RotationValidation.cs
- ClearTypeHintValidation.cs
- ReflectionHelper.cs
- X509Extension.cs
- MetabaseServerConfig.cs