EMOobConfiguration
Objective-C
@interface EMOobConfiguration : EMModuleConfiguration
Swift
class EMOobConfiguration : EMModuleConfiguration
OobConfiguration for OOB module. To be built by EMOobConfigurationBuilder
Since
4.0-
Designated constructor. Creates new configuration based on default parameters
Since
4.0
Declaration
Objective-C
+ (instancetype)configurationWithOptionalParameters: (void (^)(EMOobConfigurationBuilder *))optionalParameters;Swift
convenience init!(optionalParameters: ((EMOobConfigurationBuilder?) -> Void)!)Parameters
optionalParametersThe block that allows to set optional parameters. May be nil. If optionalParameters is set, do not assign properties to nil, or exception will be raised.
Return Value
EMOobModule module object created using the configurations that has been created.
-
The device fingerprint source.
Since
4.0Declaration
Objective-C
@property (nonatomic, readonly) EMDeviceFingerprintSource *deviceFingerprintSource;Swift
var deviceFingerprintSource: EMDeviceFingerprintSource! { get } -
The TLS configuration.
Since
4.0Declaration
Objective-C
@property (nonatomic, readonly) EMTlsConfiguration *tlsConfiguration;Swift
var tlsConfiguration: EMTlsConfiguration! { get } -
The OOB Jailbreak policy.
Since
4.0Declaration
Objective-C
@property (nonatomic, readonly) EMOobJailbreakPolicy jailbreakPolicy;Swift
var jailbreakPolicy: EMOobJailbreakPolicy { get }
EMOobConfiguration Class Reference