dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Xml/Schema XmlSchemaException


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Xml/Schema XmlSchemaException.cs,1.2,1.3
Date: Mon, 07 Apr 2003 02:04:00 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Xml/Schema
In directory subversions:/tmp/cvs-serv11023/System.Xml/Schema

Modified Files:
        XmlSchemaException.cs 
Log Message:


Add serialization support to exception classes in "System" and "System.Xml".


Index: XmlSchemaException.cs
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnetlib/System.Xml/Schema/XmlSchemaException.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** XmlSchemaException.cs       5 Apr 2003 00:35:16 -0000       1.2
--- XmlSchemaException.cs       7 Apr 2003 06:03:57 -0000       1.3
***************
*** 23,29 ****
--- 23,31 ----
  
  using System;
+ using System.Runtime.Serialization;
  
  namespace System.Xml.Schema
  {
+       [Serializable]
        public class XmlSchemaException: SystemException
        {
***************
*** 34,37 ****
--- 36,46 ----
                         throw new NotImplementedException(".ctor");
                }
+               [TODO]
+               protected XmlSchemaException(SerializationInfo info,
+                                                                        
StreamingContext context)
+                       : base(info, context)
+               {
+                       // TODO
+               }
  
                [TODO]
***************
*** 79,82 ****
--- 88,99 ----
                        }
                }
+ 
+               [TODO]
+               public override void GetObjectData(SerializationInfo info,
+                                                                               
   StreamingContext context)
+               {
+                       base.GetObjectData(info, context);
+                       // TODO
+               }
  
        }





reply via email to

[Prev in Thread] Current Thread [Next in Thread]