[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / class / System.DirectoryServices / System.DirectoryServices.ActiveDirectory / ActiveDirectorySchemaClass.cs
blob6af613f71a5135adafc5c25d44ffedbfe8ff7582
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.Security.Permissions;
25 namespace System.DirectoryServices.ActiveDirectory
27 [DirectoryServicesPermission(SecurityAction.LinkDemand, Unrestricted = true)]
28 public class ActiveDirectorySchemaClass : IDisposable
30 public string Name {
31 get {
32 throw new NotImplementedException ();
36 public string CommonName {
37 get {
38 throw new NotImplementedException ();
40 set {
41 throw new NotImplementedException ();
45 public string Oid {
46 get {
47 throw new NotImplementedException ();
49 set {
50 throw new NotImplementedException ();
54 public string Description {
55 get {
56 throw new NotImplementedException ();
58 set {
59 throw new NotImplementedException ();
63 public bool IsDefunct {
64 get {
65 throw new NotImplementedException ();
67 set {
68 throw new NotImplementedException ();
72 public ActiveDirectorySchemaClassCollection PossibleSuperiors {
73 get {
74 throw new NotImplementedException ();
78 public ReadOnlyActiveDirectorySchemaClassCollection PossibleInferiors {
79 get {
80 throw new NotImplementedException ();
84 public ActiveDirectorySchemaPropertyCollection MandatoryProperties {
85 get {
86 throw new NotImplementedException ();
90 public ActiveDirectorySchemaPropertyCollection OptionalProperties {
91 get {
92 throw new NotImplementedException ();
96 public ActiveDirectorySchemaClassCollection AuxiliaryClasses {
97 get {
98 throw new NotImplementedException ();
102 public ActiveDirectorySchemaClass SubClassOf {
103 get {
104 throw new NotImplementedException ();
106 set {
107 throw new NotImplementedException ();
111 public SchemaClassType Type {
112 get {
113 throw new NotImplementedException ();
115 set {
116 throw new NotImplementedException ();
120 public Guid SchemaGuid {
121 get {
122 throw new NotImplementedException ();
124 set {
125 throw new NotImplementedException ();
129 public ActiveDirectorySecurity DefaultObjectSecurityDescriptor {
130 get {
131 throw new NotImplementedException ();
133 set {
134 throw new NotImplementedException ();
138 public ActiveDirectorySchemaClass (DirectoryContext context, string ldapDisplayName)
140 throw new NotImplementedException ();
143 public void Dispose ()
148 protected virtual void Dispose (bool disposing)
153 public static ActiveDirectorySchemaClass FindByName (DirectoryContext context, string ldapDisplayName)
155 throw new NotImplementedException ();
158 public ReadOnlyActiveDirectorySchemaPropertyCollection GetAllProperties ()
160 throw new NotImplementedException ();
163 public void Save ()
165 throw new NotImplementedException ();
168 public override string ToString ()
170 throw new NotImplementedException ();
173 public DirectoryEntry GetDirectoryEntry ()
175 throw new NotImplementedException ();