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/XmlTypeAttribute.cs')
-rw-r--r--mcs/class/System.XML/System.Xml.Serialization/XmlTypeAttribute.cs60
1 files changed, 0 insertions, 60 deletions
diff --git a/mcs/class/System.XML/System.Xml.Serialization/XmlTypeAttribute.cs b/mcs/class/System.XML/System.Xml.Serialization/XmlTypeAttribute.cs
deleted file mode 100644
index dd8ebacb162..00000000000
--- a/mcs/class/System.XML/System.Xml.Serialization/XmlTypeAttribute.cs
+++ /dev/null
@@ -1,60 +0,0 @@
-//
-// XmlTypeAttribute.cs:
-//
-// Author:
-// John Donagher (john@webmeta.com)
-//
-// (C) 2002 John Donagher
-//
-
-using System;
-
-namespace System.Xml.Serialization
-{
- /// <summary>
- /// Summary description for XmlTypeAttribute.
- /// </summary>
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
- AttributeTargets.Enum | AttributeTargets.Interface)]
- public class XmlTypeAttribute : Attribute
- {
- private bool includeInSchema;
- private string ns;
- private string typeName;
-
- public XmlTypeAttribute ()
- {
- }
-
- public XmlTypeAttribute (string typeName)
- {
- TypeName = typeName;
- }
-
- public bool IncludeInSchema {
- get {
- return includeInSchema;
- }
- set {
- includeInSchema = value;
- }
- }
-
- public string Namespace {
- get {
- return ns;
- }
- set {
- ns = value;
- }
- }
- public string TypeName {
- get {
- return typeName;
- }
- set {
- typeName = value;
- }
- }
- }
-}