1 /******************************************************************************
3 * Copyright (c) 2003 Novell Inc., www.novell.com
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
22 *******************************************************************************/
25 // System.DirectoryServices.SchemaNameCollection.cs
28 // Sunil Kumar (sunilk@novell.com)
33 using System
.Collections
;
35 namespace System
.DirectoryServices
39 ///Contains a list of the schema names that the
40 /// SchemaFilter property of a DirectoryEntries
43 public class SchemaNameCollection
: IList
, ICollection
, IEnumerable
45 internal SchemaNameCollection ()
50 int IList
.Add(object avalue
)
52 throw new NotImplementedException();
56 public int Add (string value)
58 throw new NotImplementedException();
64 throw new NotImplementedException();
67 bool IList
.Contains(object cvalue
)
69 throw new NotImplementedException();
72 int IList
.IndexOf(object ivalue
)
74 throw new NotImplementedException();
77 void IList
.Insert(int index
,object ivalue
)
79 throw new NotImplementedException();
82 void IList
.Remove(object rvalue
)
84 throw new NotImplementedException();
87 public void RemoveAt(int index
)
89 throw new NotImplementedException();
92 bool IList
.IsFixedSize
100 bool IList
.IsReadOnly
107 object IList
.this[int recordIndex
]
112 throw new InvalidOperationException();
117 throw new InvalidOperationException();
121 public string this[int index
]
124 get { throw new NotImplementedException (); }
126 set { throw new NotImplementedException (); }
137 bool ICollection
.IsSynchronized
146 object ICollection
.SyncRoot
{
155 public IEnumerator
GetEnumerator()
157 throw new NotImplementedException();
161 public void AddRange (SchemaNameCollection coll
)
163 throw new NotImplementedException();
167 public void AddRange (string[] coll
)
169 throw new NotImplementedException();
173 public bool Contains (string s
)
175 throw new NotImplementedException();
179 void ICollection
.CopyTo (Array arr
, int pos
)
181 throw new NotImplementedException ();
185 public void CopyTo (string[] copy_to
, int pos
)
187 throw new NotImplementedException();
191 public int IndexOf (string s
)
193 throw new NotImplementedException();
197 public void Insert (int pos
, string s
)
199 throw new NotImplementedException();
203 public void Remove (string s
)
205 throw new NotImplementedException();