Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / ExecutionEngineException.cs / 1305376 / ExecutionEngineException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== // //[....] // /*============================================================================== ** ** Class: ExecutionEngineException ** ** ** Purpose: The exception class for misc execution engine exceptions. ** Currently, its only used as a placeholder type when the EE ** does a FailFast. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; [Obsolete("This type previously indicated an unspecified fatal error in the runtime. The runtime no longer raises this exception so this type is obsolete.")] [System.Runtime.InteropServices.ComVisible(true)] [Serializable] public sealed class ExecutionEngineException : SystemException { public ExecutionEngineException() : base(Environment.GetResourceString("Arg_ExecutionEngineException")) { SetErrorCode(__HResults.COR_E_EXECUTIONENGINE); } public ExecutionEngineException(String message) : base(message) { SetErrorCode(__HResults.COR_E_EXECUTIONENGINE); } public ExecutionEngineException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_EXECUTIONENGINE); } internal ExecutionEngineException(SerializationInfo info, StreamingContext context) : base(info, context) { } } } // 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
- ExpressionBuilder.cs
- SignerInfo.cs
- GenericIdentity.cs
- TextMessageEncodingElement.cs
- DesignerView.cs
- ConfigurationSection.cs
- DataSourceCache.cs
- NameScope.cs
- TextParaLineResult.cs
- LineMetrics.cs
- StructuralObject.cs
- CompositeKey.cs
- DataGridViewCell.cs
- SafeThreadHandle.cs
- RC2CryptoServiceProvider.cs
- BitHelper.cs
- XmlUnspecifiedAttribute.cs
- XmlElementAttributes.cs
- AppDomainProtocolHandler.cs
- ConfigurationStrings.cs
- HandledMouseEvent.cs
- ASCIIEncoding.cs
- SchemaMerger.cs
- ByeMessageCD1.cs
- IdentifierCreationService.cs
- BevelBitmapEffect.cs
- BinaryObjectInfo.cs
- CodeIndexerExpression.cs
- BulletedListEventArgs.cs
- ContextStaticAttribute.cs
- CacheVirtualItemsEvent.cs
- ChtmlTextWriter.cs
- NestPullup.cs
- HwndSource.cs
- RTLAwareMessageBox.cs
- MethodRental.cs
- Visual3DCollection.cs
- StrongNameIdentityPermission.cs
- ToolStripRenderer.cs
- NavigationProgressEventArgs.cs
- baseaxisquery.cs
- AddInActivator.cs
- OneToOneMappingSerializer.cs
- Shape.cs
- ComEventsInfo.cs
- ClientBuildManagerCallback.cs
- SafeNativeMethods.cs
- SoapInteropTypes.cs
- MemberListBinding.cs
- VectorCollectionConverter.cs
- StringComparer.cs
- PlaceHolder.cs
- CollectionViewSource.cs
- Win32SafeHandles.cs
- ManagedFilter.cs
- ShaderRenderModeValidation.cs
- DataGridViewCellToolTipTextNeededEventArgs.cs
- TreeView.cs
- PbrsForward.cs
- AttributeCollection.cs
- OLEDB_Enum.cs
- Menu.cs
- AncillaryOps.cs
- Util.cs
- NotifyParentPropertyAttribute.cs
- TextPointer.cs
- UnmanagedMarshal.cs
- ListViewDataItem.cs
- Rights.cs
- ConfigurationValidatorAttribute.cs
- Int32CAMarshaler.cs
- TextServicesPropertyRanges.cs
- XmlImplementation.cs
- ObjectManager.cs
- HealthMonitoringSectionHelper.cs
- Int16KeyFrameCollection.cs
- ReverseInheritProperty.cs
- AutoResetEvent.cs
- FormViewPageEventArgs.cs
- ParentControlDesigner.cs
- CommandDevice.cs
- LinkTarget.cs
- FontUnitConverter.cs
- MinMaxParagraphWidth.cs
- InteropBitmapSource.cs
- PropertyNames.cs
- WindowsRichEditRange.cs
- SendKeys.cs
- SocketException.cs
- ElementProxy.cs
- GetMemberBinder.cs
- RuntimeHelpers.cs
- FragmentQueryKB.cs
- XamlReader.cs
- DataGridViewCellValueEventArgs.cs
- C14NUtil.cs
- WinEventQueueItem.cs
- ToolStripSeparatorRenderEventArgs.cs
- Pkcs7Recipient.cs
- TextRange.cs