IPWorks Cloud 2020 iOS Edition

Questions / Feedback?

proxyAuthScheme (property)

This property is used to tell the class which type of authorization to perform when connecting to the proxy.

Syntax

@property (nonatomic,readwrite,assign,getter=proxyAuthScheme,setter=setProxyAuthScheme:) int proxyAuthScheme;
- (int)proxyAuthScheme;
- (void)setProxyAuthScheme:(int)newProxyAuthScheme;

/* Possible Values */
AUTH_BASIC(0),
AUTH_DIGEST(1),
AUTH_PROPRIETARY(2),
AUTH_NONE(3),
AUTH_NTLM(4),
AUTH_NEGOTIATE(5)
public var proxyAuthScheme: GoogledriveProxyAuthSchemes {
  get {...}
set {...} }
public enum GoogledriveProxyAuthSchemes : Int32 { case authBasic = 0 case authDigest = 1 case authProprietary = 2 case authNone = 3 case authNtlm = 4 case authNegotiate = 5 }

Default Value

0

Remarks

This property is used to tell the class which type of authorization to perform when connecting to the proxy. This is only used when the ProxyUser and ProxyPassword properties are set.

ProxyAuthScheme should be set to authNone (3) when no authentication is expected.

By default, ProxyAuthScheme is authBasic (0), and if the ProxyUser and ProxyPassword properties are set, the component will attempt basic authentication.

If ProxyAuthScheme is set to authDigest (1), digest authentication will be attempted instead.

If ProxyAuthScheme is set to authProprietary (2), then the authorization token will not be generated by the class. Look at the configuration file for the class being used to find more information about manually setting this token.

If ProxyAuthScheme is set to authNtlm (4), NTLM authentication will be used.

For security reasons, setting this property will clear the values of ProxyUser and ProxyPassword.

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