SecureBlackbox 2020 iOS Edition

Questions / Feedback?

proxyAuthentication (property)

The authentication type used by the proxy server.

Syntax

@property (nonatomic,readwrite,assign,getter=proxyAuthentication,setter=setProxyAuthentication:) int proxyAuthentication;
- (int)proxyAuthentication;
- (void)setProxyAuthentication:(int)newProxyAuthentication;

/* Possible Values */
PAT_NO_AUTHENTICATION(0),
PAT_BASIC(1),
PAT_DIGEST(2),
PAT_NTLM(3)
public var proxyAuthentication: TlsclientProxyAuthentications {
  get {...}
set {...} }
public enum TlsclientProxyAuthentications : Int32 { case patNoAuthentication = 0 case patBasic = 1 case patDigest = 2 case patNTLM = 3 }

Default Value

0

Remarks

The authentication type used by the proxy server.

patNoAuthentication0
patBasic1
patDigest2
patNTLM3

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