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