using System; using Cpp2IlInjected; namespace System.Net { /// Contains a global default proxy instance for all HTTP requests. // Token: 0x02000220 RID: 544 [Token(Token = "0x2000220")] [Obsolete] public class GlobalProxySelection { /// Gets or sets the global HTTP proxy. /// An that every call to uses. /// The value specified for a set operation was . /// The caller does not have permission for the requested operation. // Token: 0x1700028D RID: 653 // (get) Token: 0x06000DD1 RID: 3537 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x1700028D")] public static IWebProxy Select { [Token(Token = "0x6000DD1")] [Address(RVA = "0xB32D80", Offset = "0xB31D80", VA = "0x180B32D80")] get { return null; } } /// Returns an empty proxy instance. /// An that contains no information. // Token: 0x06000DD2 RID: 3538 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000DD2")] [Address(RVA = "0xB32D30", Offset = "0xB31D30", VA = "0x180B32D30")] public static IWebProxy GetEmptyWebProxy() { return null; } } }