[Mono-bugs] [Bug 76517][Wis] New - CIL 2.0: SchemaSerializationMode missing

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Sat Oct 22 09:38:51 EDT 2005


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by ck at carlo-kok.com.

http://bugzilla.ximian.com/show_bug.cgi?id=76517

--- shadow/76517	2005-10-22 09:38:51.000000000 -0400
+++ shadow/76517.tmp.14578	2005-10-22 09:38:51.000000000 -0400
@@ -0,0 +1,38 @@
+Bug#: 76517
+Product: Mono: Class Libraries
+Version: unspecified
+OS: All
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: Sys.Data
+AssignedTo: mono-bugs at ximian.com                            
+ReportedBy: ck at carlo-kok.com               
+QAContact: mono-bugs at ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: CIL 2.0:  SchemaSerializationMode missing
+
+Description of Problem:
+the namespace System.Data misses the SchemaSerializationMode type, which is
+used by auto generated DataSets in .net 2.0. To allow easy porting this
+enum should be added:
+
+public enum SchemaSerializationMode {
+  ExcludeSchema, 
+  IncludeSchema
+}
+
+and to System.Data.DataSet a new property:
+
+public virtual SchemaSerializationMode SchemaSerializationMode {
+  get {
+    return SchemaSerializationMode.IncludeSchema;
+  }
+  set {
+    throw new Exception("Cannot change serialization mode");
+  }
+}


More information about the mono-bugs mailing list