System.Net.CookieCollection
namespace System.Net
{
public class CookieCollection : ICollection, IEnumerable
{
public int Count { get; }
public bool IsReadOnly { get; }
public bool IsSynchronized { get; }
public Cookie this[int index] { get; }
public Cookie this[string name] { get; }
public object SyncRoot { get; }
public CookieCollection();
public void Add(Cookie cookie);
public void Add(CookieCollection cookies);
public void CopyTo(Array array, int index);
public void CopyTo(Cookie[] array, int index);
public IEnumerator GetEnumerator();
}
}