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/XmlTextAttribute.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.Serialization/XmlTextAttribute.cs52
1 files changed, 0 insertions, 52 deletions
diff --git a/mcs/class/System.XML/System.Xml.Serialization/XmlTextAttribute.cs b/mcs/class/System.XML/System.Xml.Serialization/XmlTextAttribute.cs
deleted file mode 100644
index 1ab9587eef8..00000000000
--- a/mcs/class/System.XML/System.Xml.Serialization/XmlTextAttribute.cs
+++ /dev/null
@@ -1,52 +0,0 @@
-//
-// XmlTextAttribute.cs:
-//
-// Author:
-// John Donagher (john@webmeta.com)
-//
-// (C) 2002 John Donagher
-//
-
-using System;
-
-namespace System.Xml.Serialization
-{
- /// <summary>
- /// Summary description for XmlTextAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Property | AttributeTargets.Field
- | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
- public class XmlTextAttribute : Attribute
- {
- private string dataType;
- private Type type;
-
- public XmlTextAttribute ()
- {
- }
-
- public XmlTextAttribute (Type type)
- {
- Type = type;
- }
-
- public string DataType {
- get {
- return dataType;
- }
- set {
- dataType = value;
- }
- }
- public Type Type
- {
- get {
- return type;
- }
- set {
- type = value;
- }
- }
-
- }
-}