WebProxy()

WebProxy::WebProxy() constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy()

WebProxy::WebProxy(System::SharedPtr<Uri>) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(System::SharedPtr<Uri> Address)

Arguments

ParameterTypeDescription
AddressSystem::SharedPtr<Uri>The proxy server address.

WebProxy::WebProxy(System::SharedPtr<Uri>, bool) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(System::SharedPtr<Uri> Address, bool BypassOnLocal)

Arguments

ParameterTypeDescription
AddressSystem::SharedPtr<Uri>The proxy server address.
BypassOnLocalboolA value that indicates if the proxy server must be used for local addresses.

WebProxy::WebProxy(System::SharedPtr<Uri>, bool, System::ArrayPtr<String>) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(System::SharedPtr<Uri> Address, bool BypassOnLocal, System::ArrayPtr<String> BypassList)

Arguments

ParameterTypeDescription
AddressSystem::SharedPtr<Uri>The proxy server address.
BypassOnLocalboolA value that indicates if the proxy server must be used for local addresses.
BypassListSystem::ArrayPtr<String>The list of addresses that do not use the proxy server.

WebProxy::WebProxy(System::SharedPtr<Uri>, bool, System::ArrayPtr<String>, System::SharedPtr<ICredentials>) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(System::SharedPtr<Uri> Address, bool BypassOnLocal, System::ArrayPtr<String> BypassList, System::SharedPtr<ICredentials> Credentials)

Arguments

ParameterTypeDescription
AddressSystem::SharedPtr<Uri>The proxy server address.
BypassOnLocalboolA value that indicates if the proxy server must be used for local addresses.
BypassListSystem::ArrayPtr<String>The list of addresses that do not use the proxy server.
CredentialsSystem::SharedPtr<ICredentials>The credentials that are sent to the proxy server for authentication.

WebProxy::WebProxy(String, int32_t) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(String Host, int32_t Port)

Arguments

ParameterTypeDescription
HostStringThe host name.
Portint32_tThe port number.

WebProxy::WebProxy(String) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(String Address)

Arguments

ParameterTypeDescription
AddressStringThe proxy server address.

WebProxy::WebProxy(String, bool) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(String Address, bool BypassOnLocal)

Arguments

ParameterTypeDescription
AddressStringThe proxy server address.
BypassOnLocalboolA value that indicates if the proxy server must be used for local addresses.

WebProxy::WebProxy(String, bool, System::ArrayPtr<String>) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(String Address, bool BypassOnLocal, System::ArrayPtr<String> BypassList)

Arguments

ParameterTypeDescription
AddressStringThe proxy server address.
BypassOnLocalboolA value that indicates if the proxy server must be used for local addresses.
BypassListSystem::ArrayPtr<String>The list of addresses that do not use the proxy server.

WebProxy::WebProxy(String, bool, System::ArrayPtr<String>, System::SharedPtr<ICredentials>) constructor

Constructs a new instance.

System::Net::WebProxy::WebProxy(String Address, bool BypassOnLocal, System::ArrayPtr<String> BypassList, System::SharedPtr<ICredentials> Credentials)

Arguments

ParameterTypeDescription
AddressStringThe proxy server address.
BypassOnLocalboolA value that indicates if the proxy server must be used for local addresses.
BypassListSystem::ArrayPtr<String>The list of addresses that do not use the proxy server.
CredentialsSystem::SharedPtr<ICredentials>The credentials that are sent to the proxy server for authentication.

See Also