New tests.
[mono.git] / mcs / class / corlib / System.Security.AccessControl / NativeObjectSecurity.cs
1 //
2 // System.Security.AccessControl.NativeObjectSecurity implementation
3 //
4 // Author:
5 //      Dick Porter  <dick@ximian.com>
6 //
7 // Copyright (C) 2005, 2006 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.Runtime.InteropServices;
30
31 namespace System.Security.AccessControl {
32
33         public abstract class NativeObjectSecurity : CommonObjectSecurity {
34
35                 protected internal delegate Exception ExceptionFromErrorCode (int errorCode, string name, SafeHandle handle, object context);
36                 
37                 internal NativeObjectSecurity ()
38                         : base (false)
39                 {
40                         /* Give it a 0-param constructor */
41                 }
42                 
43                 protected NativeObjectSecurity (bool isContainer,
44                                                 ResourceType resourceType)
45                         : base (isContainer)
46                 {
47                 }
48
49                 protected NativeObjectSecurity (bool isContainer,
50                                                 ResourceType resourceType,
51                                                 ExceptionFromErrorCode exceptionFromErrorCode,
52                                                 object exceptionContext)
53                         : this (isContainer, resourceType)
54                 {
55                 }
56                 
57                 protected NativeObjectSecurity (bool isContainer,
58                                                 ResourceType resourceType,
59                                                 SafeHandle handle,
60                                                 AccessControlSections includeSections)
61                         : this (isContainer, resourceType)
62                 {
63                 }
64                 
65                 protected NativeObjectSecurity (bool isContainer,
66                                                 ResourceType resourceType,
67                                                 string name,
68                                                 AccessControlSections includeSections)
69                         : this (isContainer, resourceType)
70                 {
71                 }
72                 
73                 protected NativeObjectSecurity (bool isContainer,
74                                                 ResourceType resourceType,
75                                                 SafeHandle handle,
76                                                 AccessControlSections includeSections,
77                                                 ExceptionFromErrorCode exceptionFromErrorCode,
78                                                 object exceptionContext)
79                         : this (isContainer, resourceType, handle, includeSections)
80                 {
81                 }
82                 
83                 protected NativeObjectSecurity (bool isContainer,
84                                                 ResourceType resourceType,
85                                                 string name,
86                                                 AccessControlSections includeSections,
87                                                 ExceptionFromErrorCode exceptionFromErrorCode,
88                                                 object exceptionContext)
89                         : this (isContainer, resourceType, name, includeSections)
90                 {
91                 }
92                 
93                 protected override sealed void Persist (SafeHandle handle,
94                                                         AccessControlSections includeSections)
95                 {
96                         throw new NotImplementedException ();
97                 }
98                 
99                 protected override sealed void Persist (string name,
100                                                         AccessControlSections includeSections)
101                 {
102                         throw new NotImplementedException ();
103                 }
104                 
105                 protected void Persist (SafeHandle handle,
106                                         AccessControlSections includeSections,
107                                         object exceptionContext)
108                 {
109                         throw new NotImplementedException ();
110                 }
111                 
112                 protected void Persist (string name,
113                                         AccessControlSections includeSections,
114                                         object exceptionContext)
115                 {
116                         throw new NotImplementedException ();
117                 }
118         }
119 }
120