Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / clr / src / BCL / System / InsufficientExecutionStackException.cs / 1305376 / InsufficientExecutionStackException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: InsufficientExecutionStackException ** ** ** Purpose: The exception class used when there is insufficient execution stack ** to allow most Framework methods to execute. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; [Serializable] public sealed class InsufficientExecutionStackException : SystemException { public InsufficientExecutionStackException() : base(Environment.GetResourceString("Arg_InsufficientExecutionStackException")) { SetErrorCode(__HResults.COR_E_INSUFFICIENTEXECUTIONSTACK); } public InsufficientExecutionStackException(String message) : base(message) { SetErrorCode(__HResults.COR_E_INSUFFICIENTEXECUTIONSTACK); } public InsufficientExecutionStackException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_INSUFFICIENTEXECUTIONSTACK); } private InsufficientExecutionStackException(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
- ProjectionAnalyzer.cs
- PrivilegeNotHeldException.cs
- InitializationEventAttribute.cs
- Int64AnimationUsingKeyFrames.cs
- NetTcpBindingElement.cs
- CodeAttributeArgument.cs
- SamlSubjectStatement.cs
- CleanUpVirtualizedItemEventArgs.cs
- DoubleLinkListEnumerator.cs
- LoadedOrUnloadedOperation.cs
- Parser.cs
- FixedSOMPageElement.cs
- CodeGotoStatement.cs
- DataStorage.cs
- XmlSchemaAttribute.cs
- SQLConvert.cs
- COAUTHIDENTITY.cs
- QuaternionKeyFrameCollection.cs
- ApplicationContext.cs
- ThousandthOfEmRealDoubles.cs
- CqlErrorHelper.cs
- FileDialog_Vista_Interop.cs
- VisualStyleElement.cs
- GlyphShapingProperties.cs
- PrintPageEvent.cs
- DeviceContext.cs
- SQLInt16.cs
- TableLayoutSettingsTypeConverter.cs
- ModuleConfigurationInfo.cs
- MULTI_QI.cs
- Formatter.cs
- VarInfo.cs
- FreezableCollection.cs
- DependencyProperty.cs
- DrawListViewItemEventArgs.cs
- TokenBasedSet.cs
- BufferModeSettings.cs
- XmlBinaryWriterSession.cs
- ProxyWebPartConnectionCollection.cs
- DataControlFieldCell.cs
- JoinCqlBlock.cs
- WmfPlaceableFileHeader.cs
- ValueUtilsSmi.cs
- TableLayoutRowStyleCollection.cs
- SHA1CryptoServiceProvider.cs
- RoutedEvent.cs
- StatusBarPanel.cs
- BevelBitmapEffect.cs
- XmlNodeList.cs
- BackgroundWorker.cs
- HtmlHistory.cs
- TreeViewEvent.cs
- DataStreams.cs
- SoapInteropTypes.cs
- PropertyStore.cs
- TextRange.cs
- TrackingSection.cs
- GeometryConverter.cs
- NativeMethods.cs
- ConnectionPointCookie.cs
- Matrix3DConverter.cs
- XmlIncludeAttribute.cs
- InstancePersistenceEvent.cs
- DiscoveryEndpointElement.cs
- TextTreeTextElementNode.cs
- MetadataPropertyAttribute.cs
- XPathMessageContext.cs
- SecureStringHasher.cs
- DataRelation.cs
- TreePrinter.cs
- SevenBitStream.cs
- TypeLibConverter.cs
- WorkerProcess.cs
- PerformanceCounterPermission.cs
- UInt32Converter.cs
- AutomationProperty.cs
- EntityDataSourceWizardForm.cs
- Rss20FeedFormatter.cs
- EntityUtil.cs
- VisualBrush.cs
- SettingsContext.cs
- WorkflowStateRollbackService.cs
- View.cs
- PropertyMetadata.cs
- ProjectionCamera.cs
- EmissiveMaterial.cs
- CodeComment.cs
- SQLMoney.cs
- SqlXml.cs
- HashAlgorithm.cs
- FrameworkElementFactoryMarkupObject.cs
- EditorPartCollection.cs
- CFGGrammar.cs
- SqlInternalConnectionTds.cs
- ImageBrush.cs
- Decorator.cs
- LinearGradientBrush.cs
- RadioButton.cs
- ValidatorAttribute.cs
- SoapExtensionStream.cs