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/corlib/System/AttributeUsage.cs')
-rw-r--r--mcs/class/corlib/System/AttributeUsage.cs50
1 files changed, 0 insertions, 50 deletions
diff --git a/mcs/class/corlib/System/AttributeUsage.cs b/mcs/class/corlib/System/AttributeUsage.cs
deleted file mode 100644
index c0bcb0616a2..00000000000
--- a/mcs/class/corlib/System/AttributeUsage.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-//
-// System.AttributeUsage.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System {
-
- [AttributeUsage(AttributeTargets.All)]
- [Serializable]
- public sealed class AttributeUsageAttribute : Attribute {
- AttributeTargets valid_on;
- bool allow_multiple, inherited;
-
- public AttributeUsageAttribute (AttributeTargets validOn)
- {
- valid_on = validOn;
- }
-
- public bool AllowMultiple {
- get {
- return allow_multiple;
- }
-
- set {
- allow_multiple = value;
- }
- }
-
- public bool Inherited {
- get {
- return inherited;
- }
-
- set {
- inherited = value;
- }
- }
-
- public AttributeTargets ValidOn {
- get {
- return valid_on;
- }
- }
- }
-}
-