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:
Diffstat (limited to 'mcs/class/System.XML/System.Xml.Serialization/XmlMembersMapping.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.Serialization/XmlMembersMapping.cs49
1 files changed, 0 insertions, 49 deletions
diff --git a/mcs/class/System.XML/System.Xml.Serialization/XmlMembersMapping.cs b/mcs/class/System.XML/System.Xml.Serialization/XmlMembersMapping.cs
deleted file mode 100644
index 933c44a7481..00000000000
--- a/mcs/class/System.XML/System.Xml.Serialization/XmlMembersMapping.cs
+++ /dev/null
@@ -1,49 +0,0 @@
-//
-// System.Xml.Serialization.XmlMembersMapping
-//
-// Author:
-// Tim Coleman (tim@timcoleman.com)
-//
-// Copyright (C) Tim Coleman, 2002
-//
-
-using System.Reflection;
-
-namespace System.Xml.Serialization {
- public class XmlMembersMapping : XmlMapping {
-
- #region Properties
-
- public int Count {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- public string ElementName {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- public XmlMemberMapping this [int index] {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- public string Namespace {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- public string TypeName {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- public string TypeNamespace {
- [MonoTODO]
- get { throw new NotImplementedException (); }
- }
-
- #endregion // Properties
- }
-}