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;
///
/// The exception that is thrown when the internal buffer overflows.
///
[Serializable]
public class InternalBufferOverflowException : SystemException {
///
/// Initializes a new default instance of the class.
///
public InternalBufferOverflowException() : base() {
HResult = HResults.InternalBufferOverflow;
}
///
/// Initializes a new instance of the class with the error
/// message to be displayed
/// specified.
///
public InternalBufferOverflowException(string message) : base(message) {
HResult =HResults.InternalBufferOverflow;
}
///
/// Initializes a new instance of the
/// class with the message to be displayed and the generated inner exception specified.
///
public InternalBufferOverflowException(string message, Exception inner) : base(message, inner) {
HResult = HResults.InternalBufferOverflow;
}
///
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
- ProcessThread.cs
- TextProperties.cs
- Suspend.cs
- HttpWebRequestElement.cs
- DataGridViewTextBoxColumn.cs
- TextEditorThreadLocalStore.cs
- AppDomainEvidenceFactory.cs
- ObjectItemCollection.cs
- RedistVersionInfo.cs
- BindingContext.cs
- RemotingAttributes.cs
- DataException.cs
- TextTrailingWordEllipsis.cs
- QueryOptionExpression.cs
- DetailsViewDeletedEventArgs.cs
- dbenumerator.cs
- BitmapEffectrendercontext.cs
- RowCache.cs
- PieceNameHelper.cs
- RadialGradientBrush.cs
- EdmRelationshipRoleAttribute.cs
- WebServicesSection.cs
- OperationResponse.cs
- ResourcesGenerator.cs
- ProcessThreadCollection.cs
- HTMLTextWriter.cs
- FileSystemEnumerable.cs
- FixUp.cs
- ComponentManagerBroker.cs
- RequestResizeEvent.cs
- SessionStateContainer.cs
- RepeatButton.cs
- KoreanLunisolarCalendar.cs
- UnauthorizedAccessException.cs
- CompositeScriptReference.cs
- TextFormatterContext.cs
- TitleStyle.cs
- CqlParserHelpers.cs
- _ScatterGatherBuffers.cs
- ProviderConnectionPoint.cs
- ArrayTypeMismatchException.cs
- ProbeMatchesMessage11.cs
- ConstrainedGroup.cs
- ScriptingWebServicesSectionGroup.cs
- ContractMapping.cs
- AutomationAttributeInfo.cs
- LinkUtilities.cs
- UntypedNullExpression.cs
- GacUtil.cs
- ImportDesigner.xaml.cs
- CounterSampleCalculator.cs
- StringDictionaryWithComparer.cs
- Button.cs
- EdmItemError.cs
- GPRECTF.cs
- SystemInfo.cs
- SponsorHelper.cs
- FrameDimension.cs
- HtmlWindowCollection.cs
- BaseValidator.cs
- XPathBuilder.cs
- RequestCachePolicyConverter.cs
- EditCommandColumn.cs
- UInt32Converter.cs
- ComPlusTraceRecord.cs
- TemplatePropertyEntry.cs
- DoubleAnimation.cs
- InputBuffer.cs
- DataGridItem.cs
- BmpBitmapEncoder.cs
- BinaryFormatter.cs
- DemultiplexingClientMessageFormatter.cs
- Assembly.cs
- Point.cs
- BindingManagerDataErrorEventArgs.cs
- UnionCodeGroup.cs
- CodeDirectionExpression.cs
- SafeArrayRankMismatchException.cs
- TransactionBehavior.cs
- XPathCompileException.cs
- ApplicationSettingsBase.cs
- SqlDataSourceAdvancedOptionsForm.cs
- ShapeTypeface.cs
- OdbcConnectionString.cs
- TypeElement.cs
- _NegoStream.cs
- SharedStatics.cs
- XmlBinaryReader.cs
- keycontainerpermission.cs
- ResourceDefaultValueAttribute.cs
- BevelBitmapEffect.cs
- recordstatescratchpad.cs
- selecteditemcollection.cs
- EntityDesignerDataSourceView.cs
- XamlWriter.cs
- GridItemPattern.cs
- ExternalException.cs
- updatecommandorderer.cs
- WebPartTracker.cs
- TypeBuilderInstantiation.cs