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.Web/System.Web.UI/TagPrefixAttribute.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/TagPrefixAttribute.cs37
1 files changed, 0 insertions, 37 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/TagPrefixAttribute.cs b/mcs/class/System.Web/System.Web.UI/TagPrefixAttribute.cs
deleted file mode 100755
index 0dc56d241f5..00000000000
--- a/mcs/class/System.Web/System.Web.UI/TagPrefixAttribute.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-//
-// System.Web.UI.TagPrefixAttribute.cs
-//
-// Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System;
-
-namespace System.Web.UI {
-
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class TagPrefixAttribute : Attribute
- {
- string namespaceName;
- string tagPrefix;
-
- public TagPrefixAttribute (string namespaceName,
- string tagPrefix)
- {
- if (namespaceName == null || tagPrefix == null)
- throw new ArgumentNullException ();
-
- this.namespaceName = namespaceName;
- this.tagPrefix = tagPrefix;
- }
-
- public string NamespaceName {
- get { return namespaceName; }
- }
-
- public string TagPrefix {
- get { return tagPrefix; }
- }
- }
-}