Added File
[mono.git] / mcs / class / corlib / System.Security.Policy / PolicyLevel.cs
1 // System.Security.Policy.PolicyLevel
2 //
3 // Nick Drochak (ndrochak@gol.com)
4 //
5 // (C) 2001 Nick Drochak
6
7 using System.Collections; // for IList
8
9 namespace System.Security.Policy
10 {
11         [MonoTODO]
12         [Serializable]
13         public sealed class PolicyLevel
14         {
15                 internal PolicyLevel () {}
16
17                 public IList FullTrustAssemblies
18                 {
19                         get
20                         {
21                                 return (IList)null;
22                         }
23                 }
24
25                 public string Label
26                 {
27                         get 
28                         {
29                                 return "";
30                         }
31                 }
32
33                 public IList NamedPermissionSets
34                 {
35                         get
36                         {
37                                 return (IList)null;
38                         }
39                 }
40
41                 public CodeGroup RootCodeGroup
42                 {
43                         get
44                         {
45                                 return (CodeGroup)null;
46                         }
47                         
48                         set
49                         {
50                                 
51                         }
52                 }
53
54                 public string StoreLocation
55                 {
56                         get
57                         {
58                                 return "";
59                         }
60                 }
61         }
62 }