Merge pull request #3234 from tritao/zip_non_seekable_streams
[mono.git] / mcs / class / System.DirectoryServices / System.DirectoryServices.ActiveDirectory / ActiveDirectorySite.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.Collections;
24 using System.Security.Permissions;
25
26 namespace System.DirectoryServices.ActiveDirectory
27 {
28         [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true)]
29         public class ActiveDirectorySite : IDisposable
30         {
31                 public string Name {
32                         get {
33                                 throw new NotImplementedException ();
34                         }
35                 }
36
37                 public DomainCollection Domains {
38                         get {
39                                 throw new NotImplementedException ();
40                         }
41                 }
42
43                 public ActiveDirectorySubnetCollection Subnets {
44                         get {
45                                 throw new NotImplementedException ();
46                         }
47                 }
48
49                 public ReadOnlyDirectoryServerCollection Servers {
50                         get {
51                                 throw new NotImplementedException ();
52                         }
53                 }
54
55                 public ReadOnlySiteCollection AdjacentSites {
56                         get {
57                                 throw new NotImplementedException ();
58                         }
59                 }
60
61                 public ReadOnlySiteLinkCollection SiteLinks {
62                         get {
63                                 throw new NotImplementedException ();
64                         }
65                 }
66
67                 public DirectoryServer InterSiteTopologyGenerator {
68                         get {
69                                 throw new NotImplementedException ();
70                         }
71                         set {
72                                 throw new NotImplementedException ();
73                         }
74                 }
75
76                 public ActiveDirectorySiteOptions Options {
77                         get {
78                                 throw new NotImplementedException ();
79                         }
80                         set {
81                                 throw new NotImplementedException ();
82                         }
83                 }
84
85                 public string Location {
86                         get {
87                                 throw new NotImplementedException ();
88                         }
89                         set {
90                                 throw new NotImplementedException ();
91                         }
92                 }
93
94                 public ReadOnlyDirectoryServerCollection BridgeheadServers {
95                         get {
96                                 throw new NotImplementedException ();
97                         }
98                 }
99
100                 public DirectoryServerCollection PreferredSmtpBridgeheadServers {
101                         get {
102                                 throw new NotImplementedException ();
103                         }
104                 }
105
106                 public DirectoryServerCollection PreferredRpcBridgeheadServers {
107                         get {
108                                 throw new NotImplementedException ();
109                         }
110                 }
111
112                 public ActiveDirectorySchedule IntraSiteReplicationSchedule {
113                         get {
114                                 throw new NotImplementedException ();
115                         }
116                         set {
117                                 throw new NotImplementedException ();
118                         }
119                 }
120
121                 public static ActiveDirectorySite FindByName (DirectoryContext context, string siteName)
122                 {
123                         throw new NotImplementedException ();
124                 }
125
126                 public ActiveDirectorySite (DirectoryContext context, string siteName)
127                 {
128                         throw new NotImplementedException ();
129                 }
130
131                 public static ActiveDirectorySite GetComputerSite ()
132                 {
133                         throw new NotImplementedException ();
134                 }
135
136                 public void Save ()
137                 {
138                         throw new NotImplementedException ();
139                 }
140
141                 public void Delete ()
142                 {
143                         throw new NotImplementedException ();
144                 }
145
146                 public override string ToString ()
147                 {
148                         throw new NotImplementedException ();
149                 }
150
151                 public DirectoryEntry GetDirectoryEntry ()
152                 {
153                         throw new NotImplementedException ();
154                 }
155
156                 public void Dispose ()
157                 {
158
159                 }
160
161                 protected virtual void Dispose (bool disposing)
162                 {
163
164                 }
165         }
166 }