proxySSL (property)

This property determines when to use SSL for the connection to the proxy.

Syntax

@property (nonatomic,readwrite,assign,getter=proxySSL,setter=setProxySSL:) int proxySSL;
- (int)proxySSL;
- (void)setProxySSL:(int)newProxySSL;

/* Possible Values */
PS_AUTOMATIC(0),
PS_ALWAYS(1),
PS_NEVER(2),
PS_TUNNEL(3)
public var proxySSL: GooglekmsProxySSLs {
  get {...}
set {...} }
public enum GooglekmsProxySSLs : Int32 { case psAutomatic = 0 case psAlways = 1 case psNever = 2 case psTunnel = 3 }

Default Value

0

Remarks

This property determines when to use SSL for the connection to the proxy. The applicable values are the following:

psAutomatic (0)Default setting. If the URL is an "https" URL, the class will use the psTunnel option. If the URL is a "http" URL, the class will use the psNever option.
psAlways (1)The connection is always SSL-enabled.
psNever (2)The connection is not SSL-enabled.
psTunnel (3)The connection is through a tunneling (HTTP) proxy.

Copyright (c) 2022 /n software inc. - All rights reserved.
Cloud Keys 2020 iOS Edition - Version 20.0 [Build 8157]