# System.Net ``` diff namespace System.Net { - public class CookieCollection : ICollection, IEnumerable { + public class CookieCollection : ICollection, ICollection, IEnumerable, IEnumerable, IReadOnlyCollection { + public void Clear(); + public bool Contains(Cookie cookie); + public bool Remove(Cookie cookie); + IEnumerator System.Collections.Generic.IEnumerable.GetEnumerator(); } public enum DecompressionMethods { + All = -1, + Brotli = 4, } public class FileWebRequest : WebRequest, ISerializable { + public override Task GetRequestStreamAsync(); + public override Task GetResponseAsync(); } public class IPEndPoint : EndPoint { + public static IPEndPoint Parse(ReadOnlySpan s); + public static IPEndPoint Parse(string s); + public static bool TryParse(ReadOnlySpan s, out IPEndPoint result); + public static bool TryParse(string s, out IPEndPoint result); } public enum SecurityProtocolType { + Tls13 = 12288, } } ```