NXMConnectionStatusReason
Objective-C
enum NXMConnectionStatusReason {}
Swift
enum NXMConnectionStatusReason : Int
A list of the NXMClient connection reasons.
-
Unknown connection reason.
Declaration
Objective-C
NXMConnectionStatusReasonUnknownSwift
case unknown = 0 -
The client connection updated due to a login.
Declaration
Objective-C
NXMConnectionStatusReasonLoginSwift
case login = 1 -
The client connection updated due to a logout.
Declaration
Objective-C
NXMConnectionStatusReasonLogoutSwift
case logout = 2 -
The client connection updated due to the token being refreshed.
Declaration
Objective-C
NXMConnectionStatusReasonTokenRefreshedSwift
case tokenRefreshed = 3 -
The client connection updated due to the token being invalid.
Declaration
Objective-C
NXMConnectionStatusReasonTokenInvalidSwift
case tokenInvalid = 4 -
The client connection updated due to an expired token.
Declaration
Objective-C
NXMConnectionStatusReasonTokenExpiredSwift
case tokenExpired = 5 -
The client connection updated due to the user not being found.
Declaration
Objective-C
NXMConnectionStatusReasonUserNotFoundSwift
case userNotFound = 6 -
The client connection updated due to the connection being terminated.
Declaration
Objective-C
NXMConnectionStatusReasonTerminatedSwift
case terminated = 7 -
The client connection updated due to an SSL pinning error.
Declaration
Objective-C
NXMConnectionStatusReasonSSLPinningErrorSwift
case sslPinningError = 8
NXMConnectionStatusReason Enumeration Reference