Add class ReplicationNeighborCollection
authorAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Tue, 30 Jul 2013 03:43:10 +0000 (13:43 +1000)
committerAlistair Leslie-Hughes <leslie_alistair@hotmail.com>
Tue, 30 Jul 2013 07:58:32 +0000 (17:58 +1000)
mcs/class/System.DirectoryServices/System.DirectoryServices.ActiveDirectory/ReplicationNeighborCollection.cs [new file with mode: 0644]
mcs/class/System.DirectoryServices/System.DirectoryServices.dll.sources

diff --git a/mcs/class/System.DirectoryServices/System.DirectoryServices.ActiveDirectory/ReplicationNeighborCollection.cs b/mcs/class/System.DirectoryServices/System.DirectoryServices.ActiveDirectory/ReplicationNeighborCollection.cs
new file mode 100644 (file)
index 0000000..aac4f9a
--- /dev/null
@@ -0,0 +1,50 @@
+/******************************************************************************
+* The MIT License
+*
+* Permission is hereby granted, free of charge, to any person obtaining  a copy
+* of this software and associated documentation files (the Software), to deal
+* in the Software without restriction, including  without limitation the rights
+* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+* copies of the Software, and to  permit persons to whom the Software is
+* furnished to do so, subject to the following conditions:
+*
+* The above copyright notice and this permission notice shall be included in
+* all copies or substantial portions of the Software.
+*
+* THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+* SOFTWARE.
+*******************************************************************************/
+using System;
+using System.Collections;
+
+namespace System.DirectoryServices.ActiveDirectory
+{
+       public class ReplicationNeighborCollection : ReadOnlyCollectionBase
+       {
+               public ReplicationNeighbor this [int index] {
+                       get {
+                               throw new NotImplementedException ();
+                       }
+               }
+
+               public bool Contains (ReplicationNeighbor neighbor)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public int IndexOf (ReplicationNeighbor neighbor)
+               {
+                       throw new NotImplementedException ();
+               }
+
+               public void CopyTo (ReplicationNeighbor[] neighbors, int index)
+               {
+                       throw new NotImplementedException ();
+               }
+       }
+}
index cfb03f906a7d25ee31875613a5f54af78ac09889..c579b4f395dcbaab0acdfcb770be1bdb2a3ce8c7 100644 (file)
@@ -56,6 +56,7 @@ System.DirectoryServices.ActiveDirectory/ReplicationCursorCollection.cs
 System.DirectoryServices.ActiveDirectory/ReplicationFailure.cs
 System.DirectoryServices.ActiveDirectory/ReplicationFailureCollection.cs
 System.DirectoryServices.ActiveDirectory/ReplicationNeighbor.cs
+System.DirectoryServices.ActiveDirectory/ReplicationNeighborCollection.cs
 System.DirectoryServices.ActiveDirectory/ReplicationOperation.cs
 System.DirectoryServices.ActiveDirectory/ReplicationOperationCollection.cs
 System.DirectoryServices.ActiveDirectory/ReplicationOperationInformation.cs