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
SCPReaderNetworkStatusOfflineSwift
case offline = 0 - 
                  
                  
The reader is online.
Declaration
Objective-C
SCPReaderNetworkStatusOnlineSwift
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
unknownstatus then the reader’s IP address could potentially be out of date.Declaration
Objective-C
SCPReaderNetworkStatusUnknownSwift
case unknown = 2