//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Net { using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Text; [Serializable] public class IPEndPointCollection : Collection { public IPEndPointCollection() { } protected override void SetItem(int index, IPEndPoint item) { if (item == null) { throw new ArgumentNullException("item"); } base.SetItem(index, item); } protected override void InsertItem(int index, IPEndPoint item) { if (item == null) { throw new ArgumentNullException("item"); } base.InsertItem(index, item); } } }