Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Services / IO / System / IO / InternalBufferOverflowException.cs / 1 / InternalBufferOverflowException.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* */ namespace System.IO { using System.Diagnostics; using System.Runtime.Serialization; using System; ////// [Serializable] public class InternalBufferOverflowException : SystemException { ///The exception that is thrown when the internal buffer overflows. ////// public InternalBufferOverflowException() : base() { HResult = HResults.InternalBufferOverflow; } ///Initializes a new default instance of the ///class. /// public InternalBufferOverflowException(string message) : base(message) { HResult =HResults.InternalBufferOverflow; } ///Initializes a new instance of the ///class with the error /// message to be displayed /// specified. /// public InternalBufferOverflowException(string message, Exception inner) : base(message, inner) { HResult = HResults.InternalBufferOverflow; } ///Initializes a new instance of the ////// class with the message to be displayed and the generated inner exception specified. protected InternalBufferOverflowException(SerializationInfo info, StreamingContext context) : base (info, context) { } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BorderGapMaskConverter.cs
- ProcessModuleDesigner.cs
- ZipIOModeEnforcingStream.cs
- CommentEmitter.cs
- ExceptionWrapper.cs
- TabControlAutomationPeer.cs
- SqlRowUpdatedEvent.cs
- QilGeneratorEnv.cs
- DataSet.cs
- BitmapData.cs
- StickyNoteHelper.cs
- SessionStateSection.cs
- LinqDataSourceEditData.cs
- nulltextnavigator.cs
- FileReservationCollection.cs
- AppLevelCompilationSectionCache.cs
- ListControl.cs
- ServiceHttpHandlerFactory.cs
- ToolStripItemBehavior.cs
- InputGestureCollection.cs
- WindowsFormsLinkLabel.cs
- WindowsListView.cs
- BulletChrome.cs
- Comparer.cs
- SectionInformation.cs
- DataGridViewRowHeaderCell.cs
- EventsTab.cs
- Permission.cs
- ToolStripDropDownClosingEventArgs.cs
- GlobalProxySelection.cs
- CodeNamespace.cs
- TextSearch.cs
- SmtpNetworkElement.cs
- LogoValidationException.cs
- DataGridViewLinkCell.cs
- ExpressionBinding.cs
- DelegateArgument.cs
- ManipulationBoundaryFeedbackEventArgs.cs
- Int16.cs
- DataGridViewRowPrePaintEventArgs.cs
- WebSysDescriptionAttribute.cs
- CodeGeneratorOptions.cs
- ItemCheckedEvent.cs
- PriorityBindingExpression.cs
- EncodingTable.cs
- GlobalProxySelection.cs
- PersonalizationDictionary.cs
- ListBindingHelper.cs
- WriteableBitmap.cs
- DaylightTime.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- CompositeDataBoundControl.cs
- NotificationContext.cs
- ObjectManager.cs
- TextElementCollectionHelper.cs
- ProfilePropertySettings.cs
- SMSvcHost.cs
- XmlParser.cs
- ArgIterator.cs
- XmlValueConverter.cs
- _OSSOCK.cs
- PropertyItem.cs
- CommonRemoteMemoryBlock.cs
- DataControlImageButton.cs
- FrameworkElementAutomationPeer.cs
- ProcessModelInfo.cs
- Latin1Encoding.cs
- OperationResponse.cs
- IgnoreSectionHandler.cs
- DbProviderFactories.cs
- WindowsButton.cs
- XmlLanguageConverter.cs
- ValueUtilsSmi.cs
- PngBitmapEncoder.cs
- HtmlToClrEventProxy.cs
- Utils.cs
- XamlStyleSerializer.cs
- ValidatorUtils.cs
- BitmapFrame.cs
- InputLanguageEventArgs.cs
- WindowsUpDown.cs
- mongolianshape.cs
- XmlAttributeProperties.cs
- Endpoint.cs
- XmlObjectSerializerReadContextComplex.cs
- SmiEventSink_Default.cs
- MorphHelper.cs
- arabicshape.cs
- SHA384Cng.cs
- StackOverflowException.cs
- ToolZoneDesigner.cs
- InternalConfigEventArgs.cs
- WebPartZoneBaseDesigner.cs
- COM2TypeInfoProcessor.cs
- NamespaceEmitter.cs
- UnsafeNativeMethods.cs
- EnterpriseServicesHelper.cs
- XmlSignificantWhitespace.cs
- ImageListStreamer.cs
- WebServiceBindingAttribute.cs