merged Sys.Web.Services 2.0 support in my branch:
[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 #if NET_2_0
30
31 using System.Runtime.InteropServices;
32
33 namespace System.Security.AccessControl {
34
35         public abstract class NativeObjectSecurity : CommonObjectSecurity {
36
37                 protected internal delegate Exception ExceptionFromErrorCode (int errorCode, string name, SafeHandle handle, object context);
38                 
39                 internal NativeObjectSecurity ()
40                 {
41                         /* Give it a 0-param constructor */
42                 }
43                 
44                 protected NativeObjectSecurity (bool isContainer,
45                                                 ResourceType resourceType)
46                 {
47                 }
48
49                 protected NativeObjectSecurity (bool isContainer,
50                                                 ResourceType resourceType,
51                                                 ExceptionFromErrorCode exceptionFromErrorCode,
52                                                 object exceptionContext)
53                 {
54                 }
55                 
56                 protected NativeObjectSecurity (bool isContainer,
57                                                 ResourceType resourceType,
58                                                 SafeHandle handle,
59                                                 AccessControlSections includeSections)
60                 {
61                 }
62                 
63                 protected NativeObjectSecurity (bool isContainer,
64                                                 ResourceType resourceType,
65                                                 string name,
66                                                 AccessControlSections includeSections)
67                 {
68                 }
69                 
70                 protected NativeObjectSecurity (bool isContainer,
71                                                 ResourceType resourceType,
72                                                 SafeHandle handle,
73                                                 AccessControlSections includeSections,
74                                                 ExceptionFromErrorCode exceptionFromErrorCode,
75                                                 object exceptionContext)
76                 {
77                 }
78                 
79                 protected NativeObjectSecurity (bool isContainer,
80                                                 ResourceType resourceType,
81                                                 string name,
82                                                 AccessControlSections includeSections,
83                                                 ExceptionFromErrorCode exceptionFromErrorCode,
84                                                 object exceptionContext)
85                 {
86                 }
87                 
88                 protected override sealed void Persist (SafeHandle handle,
89                                                         AccessControlSections includeSections)
90                 {
91                         throw new NotImplementedException ();
92                 }
93                 
94                 protected override sealed void Persist (string name,
95                                                         AccessControlSections includeSections)
96                 {
97                         throw new NotImplementedException ();
98                 }
99                 
100                 protected void Persist (SafeHandle handle,
101                                         AccessControlSections includeSections,
102                                         object exceptionContext)
103                 {
104                         throw new NotImplementedException ();
105                 }
106                 
107                 protected void Persist (string name,
108                                         AccessControlSections includeSections,
109                                         object exceptionContext)
110                 {
111                         throw new NotImplementedException ();
112                 }
113         }
114 }
115
116 #endif