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.Services/System.Web.Services.Protocols/MatchAttribute.cs')
-rw-r--r--mcs/class/System.Web.Services/System.Web.Services.Protocols/MatchAttribute.cs64
1 files changed, 0 insertions, 64 deletions
diff --git a/mcs/class/System.Web.Services/System.Web.Services.Protocols/MatchAttribute.cs b/mcs/class/System.Web.Services/System.Web.Services.Protocols/MatchAttribute.cs
deleted file mode 100644
index 95c985c5900..00000000000
--- a/mcs/class/System.Web.Services/System.Web.Services.Protocols/MatchAttribute.cs
+++ /dev/null
@@ -1,64 +0,0 @@
-//
-// System.Web.Services.Protocols.MatchAttribute.cs
-//
-// Author:
-// Tim Coleman (tim@timcoleman.com)
-//
-// Copyright (C) Tim Coleman, 2002
-//
-
-namespace System.Web.Services.Protocols {
- [AttributeUsage (AttributeTargets.All)]
- public sealed class MatchAttribute : Attribute {
-
- #region Fields
-
- int capture;
- int group;
- bool ignoreCase;
- int maxRepeats;
- string pattern;
-
- #endregion
-
- #region Constructors
-
- public MatchAttribute (string pattern)
- {
- ignoreCase = false;
- maxRepeats = -1;
- this.pattern = pattern;
- }
-
- #endregion // Constructors
-
- #region Properties
-
- public int Capture {
- get { return capture; }
- set { capture = value; }
- }
-
- public int Group {
- get { return group; }
- set { group = value; }
- }
-
- public bool IgnoreCase {
- get { return ignoreCase; }
- set { ignoreCase = value; }
- }
-
- public int MaxRepeats {
- get { return maxRepeats; }
- set { maxRepeats = value; }
- }
-
- public string Pattern {
- get { return pattern; }
- set { pattern = value; }
- }
-
- #endregion // Properties
- }
-}