SCPReaderNetworkStatus
Objective-C
enum SCPReaderNetworkStatus : NSUInteger {}
Swift
enum ReaderNetworkStatus : UInt, @unchecked Sendable
The possible networking statuses for a reader.
-
The reader is offline. Note that Chipper 2x and WisePad 3 will always report
offline
.Declaration
Objective-C
SCPReaderNetworkStatusOffline
Swift
case offline = 0
-
The reader is online.
Declaration
Objective-C
SCPReaderNetworkStatusOnline
Swift
case online = 1
-
The reader’s network status is unknown. Set for internet readers that were discovered during offline mode operation. Note: If the reader reports the
unknown
status then the reader’s IP address could potentially be out of date.Declaration
Objective-C
SCPReaderNetworkStatusUnknown
Swift
case unknown = 2