Show / Hide Table of Contents

Class Proxies

List of proxy properties to be configured in net.properties file.

Inheritance
object
Proxies
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.JmsService.Models
Assembly: OCI.DotNetSDK.Jms.dll
Syntax
public class Proxies

Properties

FtpProxyHost

Declaration
[JsonProperty(PropertyName = "ftpProxyHost")]
public string FtpProxyHost { get; set; }
Property Value
Type Description
string

Ftp host to be set in net.properties file.

FtpProxyPort

Declaration
[JsonProperty(PropertyName = "ftpProxyPort")]
public int? FtpProxyPort { get; set; }
Property Value
Type Description
int?

Ftp port number to be set in net.properties file.

HttpProxyHost

Declaration
[JsonProperty(PropertyName = "httpProxyHost")]
public string HttpProxyHost { get; set; }
Property Value
Type Description
string

Http host to be set in net.properties file.

HttpProxyPort

Declaration
[JsonProperty(PropertyName = "httpProxyPort")]
public int? HttpProxyPort { get; set; }
Property Value
Type Description
int?

Http port number to be set in net.properties file.

HttpsProxyHost

Declaration
[JsonProperty(PropertyName = "httpsProxyHost")]
public string HttpsProxyHost { get; set; }
Property Value
Type Description
string

Https host to be set in net.properties file.

HttpsProxyPort

Declaration
[JsonProperty(PropertyName = "httpsProxyPort")]
public int? HttpsProxyPort { get; set; }
Property Value
Type Description
int?

Https port number to be set in net.properties file.

SocksProxyHost

Declaration
[JsonProperty(PropertyName = "socksProxyHost")]
public string SocksProxyHost { get; set; }
Property Value
Type Description
string

Socks host to be set in net.properties file.

SocksProxyPort

Declaration
[JsonProperty(PropertyName = "socksProxyPort")]
public int? SocksProxyPort { get; set; }
Property Value
Type Description
int?

Socks port number to be set in net.properties file.

UseSystemProxies

Declaration
[JsonProperty(PropertyName = "useSystemProxies")]
public bool? UseSystemProxies { get; set; }
Property Value
Type Description
bool?

Sets "java.net.useSystemProxies=true" in net.properties when they exist.

In this article
Back to top