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
- PolicyException.cs
- RulePatternOps.cs
- StrongTypingException.cs
- Point.cs
- SoundPlayerAction.cs
- AutomationPropertyInfo.cs
- ClrPerspective.cs
- SettingsBindableAttribute.cs
- MaskedTextBox.cs
- MetadataHelper.cs
- ManualWorkflowSchedulerService.cs
- CatalogPart.cs
- OverflowException.cs
- ThemeDictionaryExtension.cs
- MbpInfo.cs
- GestureRecognitionResult.cs
- NullableDecimalMinMaxAggregationOperator.cs
- ComAdminWrapper.cs
- StylusPlugInCollection.cs
- WebControl.cs
- StringUtil.cs
- SecurityKeyUsage.cs
- DetailsViewDeleteEventArgs.cs
- DecimalKeyFrameCollection.cs
- ProfileSettings.cs
- BitmapVisualManager.cs
- LogWriteRestartAreaState.cs
- ExclusiveNamedPipeTransportManager.cs
- DesignerActionItem.cs
- ZipFileInfo.cs
- EditorPartChrome.cs
- CodeNamespaceImport.cs
- Int64KeyFrameCollection.cs
- RegexCaptureCollection.cs
- TextChange.cs
- SqlGenericUtil.cs
- ExpressionBuilderContext.cs
- ConfigUtil.cs
- TextEditorCopyPaste.cs
- Error.cs
- TransformDescriptor.cs
- SafeThemeHandle.cs
- ComEventsHelper.cs
- GetReadStreamResult.cs
- IsolatedStorage.cs
- ScrollChrome.cs
- COM2IDispatchConverter.cs
- WindowsProgressbar.cs
- unsafenativemethodsother.cs
- DatatypeImplementation.cs
- MenuScrollingVisibilityConverter.cs
- StructuralType.cs
- WorkflowApplicationUnhandledExceptionEventArgs.cs
- WorkflowDesignerMessageFilter.cs
- FullTrustAssemblyCollection.cs
- VectorCollectionValueSerializer.cs
- RangeEnumerable.cs
- MimePart.cs
- ExpandoObject.cs
- QueryInterceptorAttribute.cs
- SqlParameterizer.cs
- ExchangeUtilities.cs
- DataGridRow.cs
- FormsAuthenticationUserCollection.cs
- DateTimeValueSerializerContext.cs
- CurrentChangedEventManager.cs
- BaseCodePageEncoding.cs
- InternalMappingException.cs
- CompilerInfo.cs
- GlobalProxySelection.cs
- MembershipSection.cs
- MergeLocalizationDirectives.cs
- LinkDesigner.cs
- RegisteredScript.cs
- SharedPerformanceCounter.cs
- WsdlExporter.cs
- TailCallAnalyzer.cs
- XslVisitor.cs
- EllipseGeometry.cs
- SqlFlattener.cs
- XmlSchemaSubstitutionGroup.cs
- PropertySourceInfo.cs
- WebPartCatalogAddVerb.cs
- ValidationHelper.cs
- HttpException.cs
- ContourSegment.cs
- HttpConfigurationSystem.cs
- CheckBoxBaseAdapter.cs
- AccessDataSource.cs
- IChannel.cs
- SqlMethodCallConverter.cs
- TextServicesContext.cs
- GlyphRun.cs
- JsonReader.cs
- Msec.cs
- CapabilitiesRule.cs
- DispatchWrapper.cs
- StoreAnnotationsMap.cs
- DataGridItemEventArgs.cs
- SortDescriptionCollection.cs