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
- TextChange.cs
- ClickablePoint.cs
- MenuCommand.cs
- DES.cs
- ConfigurationManager.cs
- DoubleCollectionConverter.cs
- SqlAliaser.cs
- AuthenticodeSignatureInformation.cs
- DataBindingCollection.cs
- ExtractedStateEntry.cs
- DbBuffer.cs
- IssuedTokensHeader.cs
- StringFunctions.cs
- SqlServer2KCompatibilityCheck.cs
- FigureHelper.cs
- IgnoreSectionHandler.cs
- SecurityTokenReferenceStyle.cs
- SqlFactory.cs
- Component.cs
- ObjectToken.cs
- InvokeWebServiceDesigner.cs
- ValueSerializer.cs
- WhiteSpaceTrimStringConverter.cs
- ColorTransform.cs
- WindowsProgressbar.cs
- XamlRtfConverter.cs
- SqlDataAdapter.cs
- FormatterConverter.cs
- DesignerTransactionCloseEvent.cs
- SafeLocalMemHandle.cs
- BooleanSwitch.cs
- OleDbReferenceCollection.cs
- HMACSHA1.cs
- RelationshipConverter.cs
- DbConnectionPool.cs
- DbQueryCommandTree.cs
- ProvidersHelper.cs
- ValidatorUtils.cs
- ClientRuntimeConfig.cs
- UnSafeCharBuffer.cs
- InstancePersistence.cs
- ParamArrayAttribute.cs
- QueryStringParameter.cs
- TerminatorSinks.cs
- HScrollBar.cs
- DocumentPage.cs
- Evidence.cs
- WebPartEditorOkVerb.cs
- ObjectComplexPropertyMapping.cs
- SQLByte.cs
- BitVector32.cs
- XmlAttributeOverrides.cs
- Font.cs
- AppSettings.cs
- ClockGroup.cs
- SqlParameter.cs
- FrugalList.cs
- PageThemeParser.cs
- KnownTypeHelper.cs
- JavaScriptSerializer.cs
- Char.cs
- SrgsItemList.cs
- MultiBindingExpression.cs
- RoleManagerSection.cs
- ThicknessConverter.cs
- JsonQNameDataContract.cs
- DbConnectionPoolIdentity.cs
- ActivityStatusChangeEventArgs.cs
- TableItemPattern.cs
- NameService.cs
- ContentValidator.cs
- InProcStateClientManager.cs
- TextChangedEventArgs.cs
- DataErrorValidationRule.cs
- PieceDirectory.cs
- SchemaImporterExtension.cs
- SessionPageStateSection.cs
- WasHostedComPlusFactory.cs
- CacheOutputQuery.cs
- WorkflowApplicationIdleEventArgs.cs
- DataGridViewComboBoxCell.cs
- MimeTypeMapper.cs
- ToolStripControlHost.cs
- SafeMILHandle.cs
- PageContentCollection.cs
- CodeTypeReference.cs
- Int32Rect.cs
- MergePropertyDescriptor.cs
- NativeMethods.cs
- MatrixTransform3D.cs
- COM2IDispatchConverter.cs
- CodeAccessPermission.cs
- XamlFrame.cs
- NativeMethods.cs
- RoutedEventValueSerializer.cs
- XmlDocumentSerializer.cs
- ArithmeticLiteral.cs
- CodeGenerator.cs
- XmlSchemaDocumentation.cs
- formatter.cs