2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / class / corlib / System.Security.AccessControl / NativeObjectSecurity.cs
blobf73e37638ca29fad5a4f6b700fdc7cc53c33842c
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.
29 using System.Runtime.InteropServices;
31 namespace System.Security.AccessControl {
33 public abstract class NativeObjectSecurity : CommonObjectSecurity {
35 protected internal delegate Exception ExceptionFromErrorCode (int errorCode, string name, SafeHandle handle, object context);
37 internal NativeObjectSecurity ()
38 : base (false)
40 /* Give it a 0-param constructor */
43 protected NativeObjectSecurity (bool isContainer,
44 ResourceType resourceType)
45 : base (isContainer)
49 protected NativeObjectSecurity (bool isContainer,
50 ResourceType resourceType,
51 ExceptionFromErrorCode exceptionFromErrorCode,
52 object exceptionContext)
53 : this (isContainer, resourceType)
57 protected NativeObjectSecurity (bool isContainer,
58 ResourceType resourceType,
59 SafeHandle handle,
60 AccessControlSections includeSections)
61 : this (isContainer, resourceType)
65 protected NativeObjectSecurity (bool isContainer,
66 ResourceType resourceType,
67 string name,
68 AccessControlSections includeSections)
69 : this (isContainer, resourceType)
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)
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)
93 protected override sealed void Persist (SafeHandle handle,
94 AccessControlSections includeSections)
96 throw new NotImplementedException ();
99 protected override sealed void Persist (string name,
100 AccessControlSections includeSections)
102 throw new NotImplementedException ();
105 protected void Persist (SafeHandle handle,
106 AccessControlSections includeSections,
107 object exceptionContext)
109 throw new NotImplementedException ();
112 protected void Persist (string name,
113 AccessControlSections includeSections,
114 object exceptionContext)
116 throw new NotImplementedException ();