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
- SortKey.cs
- AsyncWaitHandle.cs
- ImageMap.cs
- PreservationFileWriter.cs
- DataGridViewAccessibleObject.cs
- SiteMembershipCondition.cs
- DataException.cs
- CacheChildrenQuery.cs
- SiteMembershipCondition.cs
- XmlSchemaAnnotated.cs
- precedingsibling.cs
- SynchronizationValidator.cs
- BitmapEffectDrawing.cs
- RawMouseInputReport.cs
- ContractsBCL.cs
- PrimitiveXmlSerializers.cs
- DataGridCommandEventArgs.cs
- StreamUpdate.cs
- BasicBrowserDialog.designer.cs
- TableLayoutPanelCellPosition.cs
- MailSettingsSection.cs
- Validator.cs
- NativeMethods.cs
- EncryptedKey.cs
- XmlAttributeOverrides.cs
- ListControl.cs
- HttpApplicationFactory.cs
- BamlTreeNode.cs
- PreProcessInputEventArgs.cs
- EndEvent.cs
- PageFunction.cs
- WebConfigurationHost.cs
- _AcceptOverlappedAsyncResult.cs
- StylusOverProperty.cs
- SerializationAttributes.cs
- DebugControllerThread.cs
- DateTimeValueSerializerContext.cs
- TransformerInfo.cs
- FontConverter.cs
- DBCommandBuilder.cs
- ResXResourceSet.cs
- BindingSource.cs
- SiteMembershipCondition.cs
- SelectionItemPattern.cs
- ConfigXmlSignificantWhitespace.cs
- NotifyCollectionChangedEventArgs.cs
- FileLevelControlBuilderAttribute.cs
- Font.cs
- EventSourceCreationData.cs
- XmlCodeExporter.cs
- RemotingConfiguration.cs
- DynamicDataRouteHandler.cs
- HandoffBehavior.cs
- PictureBox.cs
- ToolStripProgressBar.cs
- RegexGroupCollection.cs
- ProjectionCamera.cs
- DbBuffer.cs
- Trace.cs
- CacheEntry.cs
- DeliveryRequirementsAttribute.cs
- DataStreams.cs
- RegexCaptureCollection.cs
- Bookmark.cs
- DataRowExtensions.cs
- ComponentResourceKey.cs
- XmlWrappingReader.cs
- AccessDataSource.cs
- TypeProvider.cs
- MenuEventArgs.cs
- TextParaLineResult.cs
- IOException.cs
- PageCodeDomTreeGenerator.cs
- VerticalAlignConverter.cs
- XdrBuilder.cs
- DataListItem.cs
- HttpProfileBase.cs
- MobileControlsSection.cs
- SchemaNamespaceManager.cs
- BrushMappingModeValidation.cs
- ObjectContextServiceProvider.cs
- BaseServiceProvider.cs
- DataObjectFieldAttribute.cs
- XamlFigureLengthSerializer.cs
- StylusPointCollection.cs
- NumberFunctions.cs
- VectorCollectionConverter.cs
- SafeFileMapViewHandle.cs
- CompiledAction.cs
- TabControlEvent.cs
- ArgIterator.cs
- EncoderReplacementFallback.cs
- WorkflowItemPresenter.cs
- IconConverter.cs
- CfgSemanticTag.cs
- PolygonHotSpot.cs
- PreDigestedSignedInfo.cs
- BooleanExpr.cs
- GrabHandleGlyph.cs
- WmlPanelAdapter.cs