for TARGET_J2EE only:
[mono.git] / mcs / class / System.Web / System.Web.UI / PageParserFilter.jvm.cs
1 #if NET_2_0\r
2 using System.Collections;\r
3 \r
4 namespace System.Web.UI\r
5 {\r
6         public abstract class PageParserFilter\r
7         {\r
8                 protected PageParserFilter () {\r
9                         throw new NotImplementedException ();\r
10                 }\r
11                 public virtual bool AllowCode {\r
12                         get {\r
13                                 throw new NotImplementedException ();\r
14                         }\r
15                 }\r
16                 public virtual int NumberOfControlsAllowed {\r
17                         get {\r
18                                 throw new NotImplementedException ();\r
19                         }\r
20                 }\r
21                 public virtual int NumberOfDirectDependenciesAllowed {\r
22                         get {\r
23                                 throw new NotImplementedException ();\r
24                         }\r
25                 }\r
26                 public virtual int TotalNumberOfDependenciesAllowed {\r
27                         get {\r
28                                 throw new NotImplementedException ();\r
29                         }\r
30                 }\r
31                 protected string VirtualPath {\r
32                         get {\r
33                                 throw new NotImplementedException ();\r
34                         }\r
35                 }\r
36                 public virtual bool AllowBaseType (\r
37                         Type baseType\r
38                 ) {\r
39                         throw new NotImplementedException ();\r
40                 }\r
41                 public virtual bool AllowControl (Type controlType, ControlBuilder builder) {\r
42                         throw new NotImplementedException ();\r
43                 }\r
44                 public virtual bool AllowServerSideInclude (string includeVirtualPath) {\r
45                         throw new NotImplementedException ();\r
46                 }\r
47                 public virtual bool AllowVirtualReference (string referenceVirtualPath, VirtualReferenceType referenceType) {\r
48                         throw new NotImplementedException ();\r
49                 }\r
50                 public virtual CompilationMode GetCompilationMode (CompilationMode current) {\r
51                         throw new NotImplementedException ();\r
52                 }\r
53                 public virtual void ParseComplete (ControlBuilder rootBuilder) {\r
54                         throw new NotImplementedException ();\r
55                 }\r
56                 public virtual void PreprocessDirective (string directiveName, IDictionary attributes) {\r
57                         throw new NotImplementedException ();\r
58                 }\r
59         }\r
60 }\r
61 #endif\r