@interface CDRemoteSystem : NSObject
A class to represent a remote system.
Members | Descriptions |
---|---|
id | The identifier for this remote system. |
displayName | The friendly display name of this remote system. |
kind | The device type of this remote system. |
isAvailableByProximity | Indicates whether the remote system can be reached by proximal connection (UDP or Bluetooth). |
status | The availability of the remote system. |
@property (nonatomic, readonly, copy, nonnull) NSString* id;
The identifier for this remote system.
@property (nonatomic, readonly, copy, nonnull) NSString* displayName;
The friendly display name of this remote system.
@property (nonatomic, readonly, copy, nonnull) NSString* kind;
The device type of this remote system.
@property (nonatomic, readonly) BOOL isAvailableByProximity;
Indicates whether the remote system can be reached by proximal connection (UDP or Bluetooth).
@property (nonatomic, readonly) CDRemoteSystemStatus status;
The availability of the remote system.