using System;
using Cpp2IlInjected;
namespace System.Net
{
/// Provides the base interface for implementation of proxy access for the class.
// Token: 0x02000267 RID: 615
[Token(Token = "0x2000267")]
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: 0x06000F76 RID: 3958
[Token(Token = "0x6000F76")]
[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: 0x06000F77 RID: 3959
[Token(Token = "0x6000F77")]
[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: 0x170002F8 RID: 760
// (get) Token: 0x06000F78 RID: 3960
[Token(Token = "0x170002F8")]
ICredentials Credentials
{
[Token(Token = "0x6000F78")]
[Address(Slot = "2")]
get;
}
}
}