ad6f375a0ec7f6111852ec6111903a369778aa2d
[mono.git] / mcs / class / corlib / System.Security.Permissions / StrongNameIdentityPermission.cs
1 //
2 // StrongNameIdentityPermission.cs: Strong Name Identity Permission
3 //
4 // Author:
5 //      Sebastien Pouliot (spouliot@motus.com)
6 //
7 // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
8 //
9
10 //
11 // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33 using System;
34
35 namespace System.Security.Permissions {
36
37         [Serializable]
38         public sealed class StrongNameIdentityPermission : CodeAccessPermission, IBuiltInPermission {
39         
40                 private StrongNamePublicKeyBlob publickey;
41                 private string name;
42                 private Version version;
43         
44                 public StrongNameIdentityPermission (PermissionState state) 
45                 {
46                         if (state == PermissionState.Unrestricted)
47                                 throw new ArgumentException ("state");
48                         name = String.Empty;
49                         version = new Version (0, 0);
50                 }
51         
52                 public StrongNameIdentityPermission (StrongNamePublicKeyBlob blob, string name, Version version) 
53                 {
54                         if (blob == null)
55                                 throw new ArgumentNullException ("blob");
56                         if (name == null)
57                                 throw new ArgumentNullException ("name");
58                         if (version == null)
59                                 throw new ArgumentNullException ("version");
60         
61                         publickey = blob;
62                         this.name = name;
63                         this.version = version;
64                 }
65         
66                 public string Name { 
67                         get { return name; }
68                         set { name = value; }
69                 }
70         
71                 public StrongNamePublicKeyBlob PublicKey { 
72                         get { return publickey; }
73                         set {
74                                 if (value == null)
75                                         throw new ArgumentNullException ("value");
76                                 publickey = value;
77                         }
78                 }
79         
80                 public Version Version { 
81                         get { return version; }
82                         set { version = value; }
83                 }
84         
85                 public override IPermission Copy () 
86                 {
87                         return new StrongNameIdentityPermission (publickey, name, version);
88                 }
89         
90                 [MonoTODO]
91                 public override void FromXml (SecurityElement e) 
92                 {
93                         if (e == null)
94                                 throw new ArgumentNullException ("e");
95                         throw new NotImplementedException ();
96                 }
97         
98                 [MonoTODO]
99                 public override IPermission Intersect (IPermission target) 
100                 {
101                         throw new NotImplementedException ();
102                 }
103         
104                 [MonoTODO]
105                 public override bool IsSubsetOf (IPermission target) 
106                 {
107                         throw new NotImplementedException ();
108                 }
109         
110                 [MonoTODO]
111                 public override SecurityElement ToXml () 
112                 {
113                         throw new NotImplementedException ();
114                 }
115         
116                 [MonoTODO]
117                 public override IPermission Union (IPermission target) 
118                 {
119                         throw new NotImplementedException ();
120                 }
121         
122                 // IBuiltInPermission
123                 int IBuiltInPermission.GetTokenIndex ()
124                 {
125                         return 11;
126                 }
127         } 
128 }