Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / clr / src / BCL / System / StackOverflowException.cs / 1 / StackOverflowException.cs
// ==++== // // Copyright (c) Microsoft Corporation. All rights reserved. // // ==--== /*============================================================================== ** ** Class: StackOverflowException ** ** ** Purpose: The exception class for stack overflow. ** ** =============================================================================*/ namespace System { using System; using System.Runtime.Serialization; [System.Runtime.InteropServices.ComVisible(true)] [Serializable()] public sealed class StackOverflowException : SystemException { public StackOverflowException() : base(Environment.GetResourceString("Arg_StackOverflowException")) { SetErrorCode(__HResults.COR_E_STACKOVERFLOW); } public StackOverflowException(String message) : base(message) { SetErrorCode(__HResults.COR_E_STACKOVERFLOW); } public StackOverflowException(String message, Exception innerException) : base(message, innerException) { SetErrorCode(__HResults.COR_E_STACKOVERFLOW); } internal StackOverflowException(SerializationInfo info, StreamingContext context) : base (info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AccessedThroughPropertyAttribute.cs
- TextDecorationLocationValidation.cs
- InputGestureCollection.cs
- FormCollection.cs
- CrossAppDomainChannel.cs
- ParameterRetriever.cs
- ColorConvertedBitmap.cs
- WindowsEditBoxRange.cs
- ApplicationTrust.cs
- xml.cs
- XmlNodeList.cs
- LabelDesigner.cs
- PinnedBufferMemoryStream.cs
- SystemDiagnosticsSection.cs
- BindingMemberInfo.cs
- CatalogPartCollection.cs
- ConstructorBuilder.cs
- PropertyStore.cs
- DisplayMemberTemplateSelector.cs
- _AuthenticationState.cs
- PageParserFilter.cs
- DataControlFieldCollection.cs
- SchemaCollectionPreprocessor.cs
- rsa.cs
- BeginEvent.cs
- XamlToRtfParser.cs
- TemplatedControlDesigner.cs
- ServiceRoute.cs
- Attachment.cs
- CompositeControl.cs
- Empty.cs
- ProfilePropertySettings.cs
- DbProviderConfigurationHandler.cs
- DataGridViewEditingControlShowingEventArgs.cs
- ObjectIDGenerator.cs
- NetworkInformationPermission.cs
- ServerValidateEventArgs.cs
- SiteMap.cs
- VisualStyleElement.cs
- Matrix3DConverter.cs
- SingleKeyFrameCollection.cs
- GridEntryCollection.cs
- x509store.cs
- AuthenticationService.cs
- ToolStripAdornerWindowService.cs
- CodeParameterDeclarationExpressionCollection.cs
- DesignerAttribute.cs
- CodeTypeReference.cs
- HitTestWithPointDrawingContextWalker.cs
- UnmanagedMarshal.cs
- MemberAccessException.cs
- SmiEventStream.cs
- httpstaticobjectscollection.cs
- AvTraceDetails.cs
- ContextMenu.cs
- TypeLoadException.cs
- DbModificationCommandTree.cs
- Lasso.cs
- Transform3DGroup.cs
- IPHostEntry.cs
- GroupBoxRenderer.cs
- XmlText.cs
- ToolboxItemCollection.cs
- ListenerAdapter.cs
- XmlValidatingReader.cs
- wmiprovider.cs
- NativeCompoundFileAPIs.cs
- SqlInternalConnectionSmi.cs
- OdbcConnectionFactory.cs
- XmlSchemaElement.cs
- EventHandlersStore.cs
- PointCollectionConverter.cs
- EncodingTable.cs
- StringFormat.cs
- InvalidComObjectException.cs
- Triangle.cs
- TlsnegoTokenAuthenticator.cs
- PtsContext.cs
- LongTypeConverter.cs
- MatrixTransform3D.cs
- HttpListenerPrefixCollection.cs
- XmlLanguageConverter.cs
- ReadonlyMessageFilter.cs
- WasHttpModulesInstallComponent.cs
- ICspAsymmetricAlgorithm.cs
- ListManagerBindingsCollection.cs
- UnauthorizedWebPart.cs
- HtmlElementCollection.cs
- DurableMessageDispatchInspector.cs
- BulletedListEventArgs.cs
- EndOfStreamException.cs
- Switch.cs
- DataGridViewColumnHeaderCell.cs
- MailFileEditor.cs
- BitmapCodecInfo.cs
- SafeFileMappingHandle.cs
- StickyNoteHelper.cs
- DateTimeFormatInfoScanner.cs
- WmlPhoneCallAdapter.cs
- XamlTypeMapper.cs