Add class ActiveDirectorySchemaClass, ActiveDirectorySchemaClassCollection, ReadOnlyA...
[mono.git] / mcs / class / System.DirectoryServices / System.DirectoryServices.ActiveDirectory / ApplicationPartition.cs
1 /******************************************************************************
2 * The MIT License
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining  a copy
5 * of this software and associated documentation files (the Software), to deal
6 * in the Software without restriction, including  without limitation the rights
7 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8 * copies of the Software, and to  permit persons to whom the Software is
9 * furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20 * SOFTWARE.
21 *******************************************************************************/
22 using System;
23 using System.Security.Permissions;
24
25 namespace System.DirectoryServices.ActiveDirectory
26 {
27         [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true)]
28         public class ApplicationPartition : ActiveDirectoryPartition
29         {
30                 public DirectoryServerCollection DirectoryServers {
31                         get {
32                                 throw new NotImplementedException ();
33                         }
34                 }
35
36                 public string SecurityReferenceDomain {
37                         get {
38                                 throw new NotImplementedException ();
39                         }
40                         set {
41                                 throw new NotImplementedException ();
42                         }
43                 }
44
45                 public ApplicationPartition (DirectoryContext context, string distinguishedName)
46                 {
47                         throw new NotImplementedException ();
48                 }
49
50                 public ApplicationPartition (DirectoryContext context, string distinguishedName, string objectClass)
51                 {
52                         throw new NotImplementedException ();
53                 }
54
55                 protected override void Dispose (bool disposing)
56                 {
57
58                 }
59
60                 public static ApplicationPartition GetApplicationPartition (DirectoryContext context)
61                 {
62                         throw new NotImplementedException ();
63                 }
64
65                 public static ApplicationPartition FindByName (DirectoryContext context, string distinguishedName)
66                 {
67                         throw new NotImplementedException ();
68                 }
69
70                 public DirectoryServer FindDirectoryServer ()
71                 {
72                         throw new NotImplementedException ();
73                 }
74
75                 public DirectoryServer FindDirectoryServer (string siteName)
76                 {
77                         throw new NotImplementedException ();
78                 }
79
80                 public DirectoryServer FindDirectoryServer (bool forceRediscovery)
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85                 public DirectoryServer FindDirectoryServer (string siteName, bool forceRediscovery)
86                 {
87                         throw new NotImplementedException ();
88                 }
89
90                 public ReadOnlyDirectoryServerCollection FindAllDirectoryServers ()
91                 {
92                         throw new NotImplementedException ();
93                 }
94
95                 public ReadOnlyDirectoryServerCollection FindAllDirectoryServers (string siteName)
96                 {
97                         throw new NotImplementedException ();
98                 }
99
100                 public ReadOnlyDirectoryServerCollection FindAllDiscoverableDirectoryServers ()
101                 {
102                         throw new NotImplementedException ();
103                 }
104
105                 public ReadOnlyDirectoryServerCollection FindAllDiscoverableDirectoryServers (string siteName)
106                 {
107                         throw new NotImplementedException ();
108                 }
109
110                 public void Delete ()
111                 {
112                         throw new NotImplementedException ();
113                 }
114
115                 public void Save ()
116                 {
117                         throw new NotImplementedException ();
118                 }
119
120                 [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true), DirectoryServicesPermission(SecurityAction.InheritanceDemand, Unrestricted = true)]
121                 public override DirectoryEntry GetDirectoryEntry ()
122                 {
123                         throw new NotImplementedException ();
124                 }
125         }
126 }