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
- ModelTreeManager.cs
- LongTypeConverter.cs
- SweepDirectionValidation.cs
- ListViewItemSelectionChangedEvent.cs
- TabletDevice.cs
- SetMemberBinder.cs
- MembershipSection.cs
- AssemblyHash.cs
- AccessDataSourceView.cs
- StringWriter.cs
- VariableQuery.cs
- ConnectionInterfaceCollection.cs
- SHA1CryptoServiceProvider.cs
- LockCookie.cs
- RequestQueue.cs
- BitmapPalettes.cs
- DocumentationServerProtocol.cs
- WebPartTransformerAttribute.cs
- TextEffect.cs
- DataGridRow.cs
- TextBounds.cs
- TargetInvocationException.cs
- RelativeSource.cs
- CategoriesDocument.cs
- AstTree.cs
- Library.cs
- BufferedOutputStream.cs
- CompositionTarget.cs
- ResourcePool.cs
- ValidationRule.cs
- PageAsyncTask.cs
- CompilerParameters.cs
- WrappedIUnknown.cs
- SelectionItemPattern.cs
- ProfilePropertyMetadata.cs
- BindingsSection.cs
- CommonProperties.cs
- ButtonAutomationPeer.cs
- EmbossBitmapEffect.cs
- WebPartMovingEventArgs.cs
- PeerEndPoint.cs
- QueueProcessor.cs
- EndpointNotFoundException.cs
- BasicViewGenerator.cs
- BreadCrumbTextConverter.cs
- ToolConsole.cs
- MouseButtonEventArgs.cs
- TabItem.cs
- ServiceModelActivationSectionGroup.cs
- ProcessHostConfigUtils.cs
- Ipv6Element.cs
- EventLog.cs
- GenericUriParser.cs
- NotifyParentPropertyAttribute.cs
- CodeTypeMemberCollection.cs
- mansign.cs
- SettingsAttributes.cs
- ResourceReferenceKeyNotFoundException.cs
- Accessors.cs
- XmlQuerySequence.cs
- X509CertificateChain.cs
- Context.cs
- ContextMenuService.cs
- Point3DCollectionConverter.cs
- QilLiteral.cs
- TokenBasedSetEnumerator.cs
- Size3DValueSerializer.cs
- ArrayList.cs
- SchemaCollectionPreprocessor.cs
- WebContext.cs
- ImageMapEventArgs.cs
- BasePattern.cs
- AlphabetConverter.cs
- CommandField.cs
- SafeMemoryMappedViewHandle.cs
- OptimizerPatterns.cs
- XmlQueryOutput.cs
- UTF8Encoding.cs
- AdRotatorDesigner.cs
- DbConnectionFactory.cs
- MethodToken.cs
- XmlSchemaAttribute.cs
- DependencyProperty.cs
- PublisherMembershipCondition.cs
- Main.cs
- TableCell.cs
- connectionpool.cs
- Rule.cs
- SourceLineInfo.cs
- FigureParagraph.cs
- X509CertificateStore.cs
- RenderingBiasValidation.cs
- CellConstant.cs
- Tokenizer.cs
- NameValueFileSectionHandler.cs
- UInt32Converter.cs
- ValidatingPropertiesEventArgs.cs
- ListViewAutomationPeer.cs
- DataColumnPropertyDescriptor.cs
- MonthCalendar.cs