|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections;
using System.Runtime.InteropServices;
namespace System.DirectoryServices.ActiveDirectory
{
public class ReplicationNeighborCollection : ReadOnlyCollectionBase
{
private readonly DirectoryServer _server;
private readonly Hashtable _nameTable;
internal ReplicationNeighborCollection(DirectoryServer server)
{
_server = server;
Hashtable tempNameTable = new Hashtable();
_nameTable = Hashtable.Synchronized(tempNameTable);
}
public ReplicationNeighbor this[int index] => (ReplicationNeighbor)InnerList[index]!;
public bool Contains(ReplicationNeighbor neighbor)
{
if (neighbor == null)
throw new ArgumentNullException(nameof(neighbor));
return InnerList.Contains(neighbor);
}
public int IndexOf(ReplicationNeighbor neighbor)
{
if (neighbor == null)
throw new ArgumentNullException(nameof(neighbor));
return InnerList.IndexOf(neighbor);
}
public void CopyTo(ReplicationNeighbor[] neighbors, int index)
{
InnerList.CopyTo(neighbors, index);
}
private int Add(ReplicationNeighbor neighbor) => InnerList.Add(neighbor);
internal void AddHelper(DS_REPL_NEIGHBORS neighbors, IntPtr info)
{
// get the count
int count = neighbors.cNumNeighbors;
IntPtr addr = 0;
for (int i = 0; i < count; i++)
{
addr = IntPtr.Add(info, sizeof(int) * 2 + i * Marshal.SizeOf<DS_REPL_NEIGHBOR>());
ReplicationNeighbor managedNeighbor = new ReplicationNeighbor(addr, _server, _nameTable);
Add(managedNeighbor);
}
}
}
}
|