SettingsPropertyWrongTypeException.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 / Sys / System / Configuration / SettingsPropertyWrongTypeException.cs / 1 / SettingsPropertyWrongTypeException.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

namespace System.Configuration { 
    using  System.Collections.Specialized; 
    using  System.Runtime.Serialization;
    using  System.Configuration.Provider; 
    using  System.Collections;

   ////////////////////////////////////////////////////////////
   //////////////////////////////////////////////////////////// 
   [Serializable]
   public class SettingsPropertyWrongTypeException : Exception { 
       public SettingsPropertyWrongTypeException(String message) 
           : base(message)
       { 
       }

       public SettingsPropertyWrongTypeException(String message, Exception innerException)
            : base(message, innerException) 
       {
       } 
 
       protected SettingsPropertyWrongTypeException(SerializationInfo info, StreamingContext context)
            : base(info, context) 
       {
       }

       public SettingsPropertyWrongTypeException() 
       { }
   } 
} 


                        

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