Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUmadevi S <uma@mono-cvs.ximian.com>2005-09-02 12:58:47 +0400
committerUmadevi S <uma@mono-cvs.ximian.com>2005-09-02 12:58:47 +0400
commitaf33abab22e6b532a4e23f25d82a925af753b7d1 (patch)
treeeba3f25951d00700e22c40b4748f4cf2952ed9f4 /mcs/class/System.Data/System.Data.SqlTypes
parentb170e0b4478e42cca53bbfdb2f7cdc43158507fc (diff)
* SqlXml.cs : Added a dummy placeholder to compile MicrosoftServer namespace
svn path=/trunk/mcs/; revision=49326
Diffstat (limited to 'mcs/class/System.Data/System.Data.SqlTypes')
-rw-r--r--mcs/class/System.Data/System.Data.SqlTypes/ChangeLog4
-rw-r--r--mcs/class/System.Data/System.Data.SqlTypes/SqlXml.cs46
2 files changed, 50 insertions, 0 deletions
diff --git a/mcs/class/System.Data/System.Data.SqlTypes/ChangeLog b/mcs/class/System.Data/System.Data.SqlTypes/ChangeLog
index 32b467e01d5..91156c07fd0 100644
--- a/mcs/class/System.Data/System.Data.SqlTypes/ChangeLog
+++ b/mcs/class/System.Data/System.Data.SqlTypes/ChangeLog
@@ -1,3 +1,7 @@
+2005-09-02 Umadevi S <sumadevi@novell.com>
+
+ * SqlXml.cs : Added a dummy placeholder to compile MicrosoftServer namespace
+
2005-03-11 Sureshkumar T <tsureshkumar@novell.com>
* SqlDateTime.cs (Parse): Re-org. Resolve unreachable code.
diff --git a/mcs/class/System.Data/System.Data.SqlTypes/SqlXml.cs b/mcs/class/System.Data/System.Data.SqlTypes/SqlXml.cs
new file mode 100644
index 00000000000..61f28efbdd7
--- /dev/null
+++ b/mcs/class/System.Data/System.Data.SqlTypes/SqlXml.cs
@@ -0,0 +1,46 @@
+//
+// System.Data.SqlTypes.SqlXml
+//
+// Author:
+// Umadevi S (sumadevi@novell.com)
+//
+// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using System;
+using System.Globalization;
+using System.Threading;
+
+#if NET_2_0
+
+namespace System.Data.SqlTypes
+{
+ [MonoTODO]
+ public class SqlXml
+ {
+ public SqlXml()
+ {
+ }
+ }
+}
+
+#endif