Code:
/ FX-1434 / FX-1434 / 1.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
- DoubleStorage.cs
- SqlDelegatedTransaction.cs
- RSAProtectedConfigurationProvider.cs
- XmlWrappingWriter.cs
- RelatedCurrencyManager.cs
- FileEnumerator.cs
- XmlRootAttribute.cs
- httpserverutility.cs
- BlockingCollection.cs
- UpnEndpointIdentity.cs
- LogicalChannelCollection.cs
- SynchronizedInputHelper.cs
- FontWeight.cs
- Message.cs
- EncryptedPackage.cs
- Inline.cs
- WebPartConnectionsCloseVerb.cs
- RunClient.cs
- OleDbPermission.cs
- Annotation.cs
- XmlName.cs
- HtmlInputButton.cs
- VisualStyleInformation.cs
- StringDictionaryWithComparer.cs
- PermissionSet.cs
- Select.cs
- XmlSchemaAll.cs
- RowCache.cs
- WindowsListViewSubItem.cs
- EUCJPEncoding.cs
- InvalidOperationException.cs
- ToolStripRendererSwitcher.cs
- EntityDataSourceWizardForm.cs
- SimpleWorkerRequest.cs
- HGlobalSafeHandle.cs
- CapabilitiesRule.cs
- XmlSchemaElement.cs
- CalculatedColumn.cs
- ToolStripRenderer.cs
- Matrix.cs
- Table.cs
- SafeFileHandle.cs
- PathFigure.cs
- SectionInput.cs
- InternalConfigHost.cs
- Model3DGroup.cs
- ExceptionHelpers.cs
- XmlSchemaParticle.cs
- FlagsAttribute.cs
- Parser.cs
- StrokeFIndices.cs
- CacheOutputQuery.cs
- TableParaClient.cs
- ByteFacetDescriptionElement.cs
- SafeEventLogWriteHandle.cs
- DbUpdateCommandTree.cs
- FtpRequestCacheValidator.cs
- BeginSelectCardRequest.cs
- BitmapVisualManager.cs
- SingletonConnectionReader.cs
- Int32Rect.cs
- PackagePartCollection.cs
- PropertyReferenceSerializer.cs
- DataGridViewCellPaintingEventArgs.cs
- GetPageCompletedEventArgs.cs
- ConnectionStringSettingsCollection.cs
- MappingModelBuildProvider.cs
- XmlWriter.cs
- wgx_exports.cs
- DataListItemCollection.cs
- PriorityQueue.cs
- ChannelSinkStacks.cs
- CachedRequestParams.cs
- FileStream.cs
- BuildProvider.cs
- AnimationException.cs
- ForeignConstraint.cs
- Int32Rect.cs
- ImagingCache.cs
- TypedCompletedAsyncResult.cs
- MemberBinding.cs
- DbModificationClause.cs
- Sql8ExpressionRewriter.cs
- Int64AnimationUsingKeyFrames.cs
- TreeNodeBindingCollection.cs
- ProcessModuleCollection.cs
- XmlBufferedByteStreamReader.cs
- VirtualPathProvider.cs
- StringBuilder.cs
- QuaternionValueSerializer.cs
- AttachedProperty.cs
- PropertyDescriptorGridEntry.cs
- ParserExtension.cs
- SQLUtility.cs
- CompositeClientFormatter.cs
- EdmMember.cs
- BindingManagerDataErrorEventArgs.cs
- Sql8ExpressionRewriter.cs
- ProtectedUri.cs
- HttpStreamXmlDictionaryWriter.cs