[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.DirectoryServices / System.DirectoryServices.ActiveDirectory / GlobalCatalog.cs
blobc3d816b658ac3be5a070da6ead88bdadb77e38ec
1 /******************************************************************************
2 * The MIT License
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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;
26 namespace System.DirectoryServices.ActiveDirectory
28 [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true)]
29 public class GlobalCatalog : DomainController
31 public static GlobalCatalog GetGlobalCatalog (DirectoryContext context)
33 throw new NotImplementedException ();
36 public new static GlobalCatalog FindOne (DirectoryContext context)
38 throw new NotImplementedException ();
41 public new static GlobalCatalog FindOne (DirectoryContext context, string siteName)
43 throw new NotImplementedException ();
46 public new static GlobalCatalog FindOne (DirectoryContext context, LocatorOptions flag)
48 throw new NotImplementedException ();
51 public new static GlobalCatalog FindOne (DirectoryContext context, string siteName, LocatorOptions flag)
53 throw new NotImplementedException ();
56 public new static GlobalCatalogCollection FindAll (DirectoryContext context)
58 throw new NotImplementedException ();
61 public new static GlobalCatalogCollection FindAll (DirectoryContext context, string siteName)
63 throw new NotImplementedException ();
66 [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true), DirectoryServicesPermission(SecurityAction.InheritanceDemand, Unrestricted = true)]
67 public override GlobalCatalog EnableGlobalCatalog ()
69 throw new NotImplementedException ();
72 public DomainController DisableGlobalCatalog ()
74 throw new NotImplementedException ();
77 [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true), DirectoryServicesPermission(SecurityAction.InheritanceDemand, Unrestricted = true)]
78 public override bool IsGlobalCatalog ()
80 throw new NotImplementedException ();
83 public ReadOnlyActiveDirectorySchemaPropertyCollection FindAllProperties ()
85 throw new NotImplementedException ();
88 [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true), DirectoryServicesPermission(SecurityAction.InheritanceDemand, Unrestricted = true)]
89 public override DirectorySearcher GetDirectorySearcher ()
91 throw new NotImplementedException ();