RGLTCCParams
Objective-C
@interface RGLTCCParams : NSObject
Swift
class TCCParams : NSObject
TCC service related parameters for RFID session configuration.
-
The TA URL for the TCC service. The value of the property must be a valid URL string.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *serviceTAURLString;
Swift
var serviceTAURLString: String? { get set }
-
The PA URL for the TCC service. The value of the property must be a valid URL string.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *servicePAURLString;
Swift
var servicePAURLString: String? { get set }
-
The URL for the certificate for a TCC service. The value of the property must be a valid URL string.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *pfxCertURLString;
Swift
var pfxCertURLString: String? { get set }
-
The bytes of the certificate for a TCC service. This data will be used instead of loading the certificate via
pfxCertURLString
.Declaration
Objective-C
@property (nonatomic, copy, nullable) NSData *pfxCertData;
Swift
var pfxCertData: Data? { get set }
-
The passphrase for the cerficiate provided by the
pfxCertURLString
property.Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *pfxPassPhrase;
Swift
var pfxPassPhrase: String? { get set }
-
Undocumented
Declaration
Objective-C
- (instancetype)init;
Swift
convenience init()
-
Undocumented
Declaration
Objective-C
- (instancetype)initWithServiceTAURLString:(nullable NSString *)serviceTAURLString servicePAURLString:(nullable NSString *)servicePAURLString pfxCertURLString:(nullable NSString *)pfxCertURLString pfxCertData:(nullable NSData *)pfxCertData pfxPassPhrase:(nullable NSString *)pfxPassPhrase NS_DESIGNATED_INITIALIZER;
Swift
init(serviceTAURLString: String?, servicePAURLString: String?, pfxCertURLString: String?, pfxCertData: Data?, pfxPassPhrase: String?)