InternalBufferOverflowException.cs source code in C# .NET

Source code for the .NET framework in C#

                        

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

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK