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
- AnonymousIdentificationModule.cs
- StdValidatorsAndConverters.cs
- ExpressionVisitor.cs
- FileVersionInfo.cs
- SafeSecurityHandles.cs
- IImplicitResourceProvider.cs
- DataColumnMappingCollection.cs
- BufferedWebEventProvider.cs
- ConfigurationManagerInternalFactory.cs
- AttributeAction.cs
- WebPageTraceListener.cs
- MimeImporter.cs
- DataGridViewColumnCollection.cs
- ImageSourceConverter.cs
- DateRangeEvent.cs
- UnsafeNativeMethods.cs
- Pair.cs
- BulletedListEventArgs.cs
- CodeExpressionStatement.cs
- ScaleTransform.cs
- EncryptedPackageFilter.cs
- FilteredReadOnlyMetadataCollection.cs
- PartBasedPackageProperties.cs
- RSAPKCS1KeyExchangeFormatter.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- ButtonPopupAdapter.cs
- SuppressIldasmAttribute.cs
- ReplyChannelAcceptor.cs
- PackWebRequest.cs
- SoapTypeAttribute.cs
- GridPattern.cs
- WebServiceBindingAttribute.cs
- SelectedCellsCollection.cs
- MachineSettingsSection.cs
- TransformerConfigurationWizardBase.cs
- FontNamesConverter.cs
- FormViewUpdatedEventArgs.cs
- TransformConverter.cs
- StrongName.cs
- MessageRpc.cs
- AppDomainUnloadedException.cs
- QueryCacheKey.cs
- DataSet.cs
- SingletonChannelAcceptor.cs
- X509Utils.cs
- OSEnvironmentHelper.cs
- CorrelationTokenTypeConvertor.cs
- SystemWebSectionGroup.cs
- ExtendedProtectionPolicyElement.cs
- Vector3D.cs
- TextAnchor.cs
- LoginUtil.cs
- SparseMemoryStream.cs
- SAPIEngineTypes.cs
- UniformGrid.cs
- NavigationHelper.cs
- MethodToken.cs
- BinaryObjectInfo.cs
- coordinator.cs
- DynamicRendererThreadManager.cs
- OdbcError.cs
- MetafileHeader.cs
- DelegatedStream.cs
- ToolStripPanelCell.cs
- XmlReturnReader.cs
- BooleanStorage.cs
- NavigationFailedEventArgs.cs
- TypeLibConverter.cs
- BamlMapTable.cs
- CodeExporter.cs
- DetailsViewModeEventArgs.cs
- MatrixAnimationUsingPath.cs
- CompiledQueryCacheEntry.cs
- TextEditorSelection.cs
- ContainerAction.cs
- CodeDomSerializationProvider.cs
- XNodeSchemaApplier.cs
- SourceInterpreter.cs
- EntityEntry.cs
- RegexCharClass.cs
- RichTextBox.cs
- NavigationProgressEventArgs.cs
- DataReceivedEventArgs.cs
- SqlConnectionHelper.cs
- SchemaImporterExtensionsSection.cs
- PersianCalendar.cs
- ListViewGroupConverter.cs
- ToolStripLabel.cs
- WebPartTransformer.cs
- Root.cs
- XPathNavigator.cs
- HttpWebRequest.cs
- Rule.cs
- InternalSafeNativeMethods.cs
- SuppressIldasmAttribute.cs
- CodeDOMUtility.cs
- ColumnResult.cs
- XmlChildEnumerator.cs
- Base64Stream.cs
- TimeSpanValidator.cs