**** Merged from MCS ****
[mono-project.git] / mcs / class / corlib / System.Security.Permissions / RegistryPermissionAttribute.cs
blobe2a3fff6060c4315083bb7cd781df977e6f19f5a
1 //
2 // System.Security.Permissions.RegistryPermissionAttribute.cs
3 //
4 // Authors
5 // Duncan Mak <duncan@ximian.com>
6 // Sebastien Pouliot <sebastien@ximian.com>
7 //
8 // (C) 2002 Ximian, Inc. http://www.ximian.com
9 // Portions Copyright (C) 2003 Motus Technologies (http://www.motus.com)
10 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 using System;
34 namespace System.Security.Permissions {
36 [AttributeUsage (AttributeTargets.Assembly | AttributeTargets.Class |
37 AttributeTargets.Struct | AttributeTargets.Constructor |
38 AttributeTargets.Method, AllowMultiple=true, Inherited=false)]
39 [Serializable]
40 public sealed class RegistryPermissionAttribute : CodeAccessSecurityAttribute {
42 // Fields
43 private string create;
44 private string read;
45 private string write;
46 #if NET_2_0
47 private string changeAccessControl;
48 private string viewAccessControl;
49 private string viewAndModify;
50 #endif
52 // Constructor
53 public RegistryPermissionAttribute (SecurityAction action) : base (action)
57 // Properties
58 #if NET_2_0
59 [Obsolete ("use newer properties")]
60 #endif
61 public string All {
62 #if ! NET_1_0
63 get { throw new NotSupportedException ("All"); }
64 #endif
65 set {
66 create = value;
67 read = value;
68 write = value;
72 public string Create {
73 get { return create; }
74 set { create = value; }
77 public string Read {
78 get { return read; }
79 set { read = value; }
82 public string Write {
83 get { return write; }
84 set { write = value; }
87 #if NET_2_0
88 public string ChangeAccessControl {
89 get { return changeAccessControl; }
90 set { changeAccessControl = value; }
93 public string ViewAccessControl {
94 get { return viewAccessControl; }
95 set { viewAccessControl = value; }
98 public string ViewAndModify {
99 get { throw new NotSupportedException (); } // as documented
100 set {
101 create = value;
102 read = value;
103 write = value;
106 #endif
107 // Methods
108 public override IPermission CreatePermission ()
110 RegistryPermission perm = null;
111 if (this.Unrestricted)
112 perm = new RegistryPermission (PermissionState.Unrestricted);
113 else {
114 perm = new RegistryPermission (PermissionState.None);
115 if (create != null)
116 perm.AddPathList (RegistryPermissionAccess.Create, create);
117 if (read != null)
118 perm.AddPathList (RegistryPermissionAccess.Read, read);
119 if (write != null)
120 perm.AddPathList (RegistryPermissionAccess.Write, write);
122 return perm;