using System;
using Cpp2IlInjected;
namespace System.Net
{
/// Provides the base interface for implementation of proxy access for the class.
// Token: 0x0200026B RID: 619
[Token(Token = "0x200026B")]
public interface IWebProxy
{
/// Returns the URI of a proxy.
/// A that specifies the requested Internet resource.
/// A instance that contains the URI of the proxy used to contact .
// Token: 0x06000F8C RID: 3980
[Token(Token = "0x6000F8C")]
[Address(Slot = "0")]
Uri GetProxy(Uri destination);
/// Indicates that the proxy should not be used for the specified host.
/// The of the host to check for proxy use.
///
/// if the proxy server should not be used for ; otherwise, .
// Token: 0x06000F8D RID: 3981
[Token(Token = "0x6000F8D")]
[Address(Slot = "1")]
bool IsBypassed(Uri host);
/// The credentials to submit to the proxy server for authentication.
/// An instance that contains the credentials that are needed to authenticate a request to the proxy server.
// Token: 0x170002FC RID: 764
// (get) Token: 0x06000F8E RID: 3982
[Token(Token = "0x170002FC")]
ICredentials Credentials
{
[Token(Token = "0x6000F8E")]
[Address(Slot = "2")]
get;
}
}
}