(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / class / System.DirectoryServices / System.DirectoryServices / SchemaNameCollection.cs
blob6b94d89070f3d42acf0e6b630e3f0c304c232c0f
1 /******************************************************************************
2 * The MIT License
3 * Copyright (c) 2003 Novell Inc., www.novell.com
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and associated documentation files (the Software), to deal
7 * in the Software without restriction, including without limitation the rights
8 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 * copies of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
12 * The above copyright notice and this permission notice shall be included in
13 * all copies or substantial portions of the Software.
15 * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 * SOFTWARE.
22 *******************************************************************************/
25 // System.DirectoryServices.SchemaNameCollection.cs
27 // Author:
28 // Sunil Kumar (sunilk@novell.com)
30 // (C) Novell Inc.
33 using System.Collections;
35 namespace System.DirectoryServices
38 /// <summary>
39 ///Contains a list of the schema names that the
40 /// SchemaFilter property of a DirectoryEntries
41 /// object can use.
42 /// </summary>
43 public class SchemaNameCollection : IList, ICollection, IEnumerable
45 internal SchemaNameCollection ()
49 [MonoTODO]
50 int IList.Add(object avalue)
52 throw new NotImplementedException();
55 [MonoTODO]
56 public int Add (string value)
58 throw new NotImplementedException();
61 [MonoTODO]
62 public void Clear()
64 throw new NotImplementedException();
66 [MonoTODO]
67 bool IList.Contains(object cvalue)
69 throw new NotImplementedException();
71 [MonoTODO]
72 int IList.IndexOf(object ivalue)
74 throw new NotImplementedException();
76 [MonoTODO]
77 void IList.Insert(int index,object ivalue)
79 throw new NotImplementedException();
81 [MonoTODO]
82 void IList.Remove(object rvalue)
84 throw new NotImplementedException();
86 [MonoTODO]
87 public void RemoveAt(int index)
89 throw new NotImplementedException();
92 bool IList.IsFixedSize
94 get
96 return true;
100 bool IList.IsReadOnly
104 return true;
107 object IList.this[int recordIndex]
109 [MonoTODO]
110 get
112 throw new InvalidOperationException();
114 [MonoTODO]
117 throw new InvalidOperationException();
121 public string this[int index]
123 [MonoTODO]
124 get { throw new NotImplementedException (); }
125 [MonoTODO]
126 set { throw new NotImplementedException (); }
130 public int Count
134 return 0;
137 bool ICollection.IsSynchronized
139 [MonoTODO]
142 return true;
146 object ICollection.SyncRoot {
147 [MonoTODO]
148 get {
149 // FIXME:
150 return this;
154 [MonoTODO]
155 public IEnumerator GetEnumerator()
157 throw new NotImplementedException();
160 [MonoTODO]
161 public void AddRange (SchemaNameCollection coll)
163 throw new NotImplementedException();
166 [MonoTODO]
167 public void AddRange (string[] coll)
169 throw new NotImplementedException();
172 [MonoTODO]
173 public bool Contains (string s)
175 throw new NotImplementedException();
178 [MonoTODO]
179 void ICollection.CopyTo (Array arr, int pos)
181 throw new NotImplementedException ();
184 [MonoTODO]
185 public void CopyTo (string[] copy_to, int pos)
187 throw new NotImplementedException();
190 [MonoTODO]
191 public int IndexOf (string s)
193 throw new NotImplementedException();
196 [MonoTODO]
197 public void Insert (int pos, string s)
199 throw new NotImplementedException();
202 [MonoTODO]
203 public void Remove (string s)
205 throw new NotImplementedException();