[System.Net] Add support for .pac proxy config scripts on mac
[mono.git] / mcs / class / System.Web / System.Web.UI / VerificationAttribute.jvm.cs
1 //
2 // System.Web.UI.VerificationAttribute.cs
3 //
4 // Authors:
5 //     Arina Itkes (arinai@mainsoft.com)
6 //
7 // (C) 2007 Mainsoft Co. (http://www.mainsoft.com)
8 //
9 //
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32 namespace System.Web.UI
33 {
34         [AttributeUsageAttribute (AttributeTargets.Class | AttributeTargets.Property, AllowMultiple = true)]
35         public sealed class VerificationAttribute : Attribute
36         {
37                 public VerificationAttribute (string guideline,
38                                                                                 string checkpoint,
39                                                                                 VerificationReportLevel reportLevel,
40                                                                                 int priority,
41                                                                                 string message) {
42                 }
43                 public VerificationAttribute (string guideline,
44                                                                                 string checkpoint,
45                                                                                 VerificationReportLevel reportLevel,
46                                                                                 int priority,
47                                                                                 string message,
48                                                                                 VerificationRule rule,
49                                                                                 string conditionalProperty) {
50                 }
51                 public VerificationAttribute (string guideline,
52                                                                                 string checkpoint,
53                                                                                 VerificationReportLevel reportLevel,
54                                                                                 int priority,
55                                                                                 string message,
56                                                                                 VerificationRule rule,
57                                                                                 string conditionalProperty,
58                                                                                 VerificationConditionalOperator conditionalOperator,
59                                                                                 string conditionalValue,
60                                                                                 string guidelineUrl) {
61                 }
62                 public string Checkpoint {
63                         get {
64                                 throw new NotImplementedException ();
65                         }
66                 }
67                 public string ConditionalProperty {
68                         get {
69                                 throw new NotImplementedException ();
70                         }
71                 }
72                 public string ConditionalValue {
73                         get {
74                                 throw new NotImplementedException ();
75                         }
76                 }
77                 public string Guideline {
78                         get {
79                                 throw new NotImplementedException ();
80                         }
81                 }
82                 public string GuidelineUrl {
83                         get {
84                                 throw new NotImplementedException ();
85                         }
86                 }
87                 public string Message {
88                         get {
89                                 throw new NotImplementedException ();
90                         }
91                 }
92                 public int Priority {
93                         get {
94                                 throw new NotImplementedException ();
95                         }
96                 }
97                 public VerificationConditionalOperator VerificationConditionalOperator {
98                         get {
99                                 throw new NotImplementedException ();
100                         }
101                 }
102                 public VerificationReportLevel VerificationReportLevel {
103                         get {
104                                 throw new NotImplementedException ();
105                         }
106                 }
107                 public VerificationRule VerificationRule {
108                         get {
109                                 throw new NotImplementedException ();
110                         }
111                 }
112         }
113 }
114 #endif