Class ProxyInfo
Configuration info for an HTTP proxy. For a direct proxy, set the host, port, and excluded_hosts fields. For a PAC script proxy, set the pac_uri field.
Implements
Inherited Members
Namespace: Google.Apis.AndroidManagement.v1.Data
Assembly: Google.Apis.AndroidManagement.v1.dll
Syntax
public class ProxyInfo : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExcludedHosts
For a direct proxy, the hosts for which the proxy is bypassed. The host names may contain wildcards such as *.example.com.
Declaration
[JsonProperty("excludedHosts")]
public virtual IList<string> ExcludedHosts { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
Host
The host of the direct proxy.
Declaration
[JsonProperty("host")]
public virtual string Host { get; set; }
Property Value
Type | Description |
---|---|
string |
PacUri
The URI of the PAC script used to configure the proxy.
Declaration
[JsonProperty("pacUri")]
public virtual string PacUri { get; set; }
Property Value
Type | Description |
---|---|
string |
Port
The port of the direct proxy.
Declaration
[JsonProperty("port")]
public virtual int? Port { get; set; }
Property Value
Type | Description |
---|---|
int? |