Share via


VoipPhoneCall.IsUsingAssociatedDevicesList Property

Definition

Gets a value that represents whether or not the associated devices list is being used by the call.

public:
 property bool IsUsingAssociatedDevicesList { bool get(); };
bool IsUsingAssociatedDevicesList();
/// [Windows.Foundation.Metadata.Experimental]
/// [get: Windows.Foundation.Metadata.Experimental]
bool IsUsingAssociatedDevicesList();
public bool IsUsingAssociatedDevicesList { get; }
[Windows.Foundation.Metadata.Experimental]
public bool IsUsingAssociatedDevicesList { [Windows.Foundation.Metadata.Experimental] get; }
var boolean = voipPhoneCall.isUsingAssociatedDevicesList;
Public ReadOnly Property IsUsingAssociatedDevicesList As Boolean

Property Value

Boolean

bool

true if call control devices will be able to interact with the call only if their device ID is included in the associated devices list. false if all connected call control devices will be able to show the call state, and control the call.

Attributes

Windows requirements

Device family
Windows 11, version 24H2 (introduced in 10.0.26100.0)
API contract
Windows.ApplicationModel.Calls.CallsVoipContract (introduced in v5.0)
App capabilities
voipCall

Remarks

If a new call is requested using a call options object created with a list of associated call control device IDs included (including an empty list), then IsUsingAssociatedDevicesList will be initialized to true. Otherwise, it will be initialized to false. If initialized to false, and the list of associated devices for the call is later added to or set (including set to an empty list), then IsUsingAssociatedDevicesList will be updated to true for the remaining lifetime of the call.

Applies to