AcceptedVoipPhoneCallOptions Constructors

Definition

Overloads

Name Description
AcceptedVoipPhoneCallOptions()

Creates a default instance of AcceptedVoipPhoneCallOptions.

AcceptedVoipPhoneCallOptions(IIterable<String>)

Creates an instance of AcceptedVoipPhoneCallOptions from a list of device interface ids of call control devices to associate with the call.

AcceptedVoipPhoneCallOptions()

Creates a default instance of AcceptedVoipPhoneCallOptions.

public:
 AcceptedVoipPhoneCallOptions();
 AcceptedVoipPhoneCallOptions();
public AcceptedVoipPhoneCallOptions();
function AcceptedVoipPhoneCallOptions()
Public Sub New ()

Windows requirements

Requirements Description
App capabilities
voipCall

Applies to

AcceptedVoipPhoneCallOptions(IIterable<String>)

Creates an instance of AcceptedVoipPhoneCallOptions from a list of device interface ids of call control devices to associate with the call.

public:
 AcceptedVoipPhoneCallOptions(IIterable<Platform::String ^> ^ associatedDeviceIds);
 AcceptedVoipPhoneCallOptions(IIterable<winrt::hstring> const& associatedDeviceIds);
public AcceptedVoipPhoneCallOptions(IEnumerable<string> associatedDeviceIds);
function AcceptedVoipPhoneCallOptions(associatedDeviceIds)
Public Sub New (associatedDeviceIds As IEnumerable(Of String))

Parameters

associatedDeviceIds

IIterable<String>

IEnumerable<String>

IIterable<Platform::String>

IIterable<winrt::hstring>

A list of device interface ids of call control devices to associate with the call. The list may be empty, but associatedDeviceIds may not be null (otherwise returns E_INVALIDARG). Specifying this parameter results in the VoipPhoneCall.IsUsingAssociatedDevicesList property of a new call created with these options to be initialized to true, meaning that only associated devices will show the call state and be able to answer the call.

Windows requirements

Requirements Description
App capabilities
voipCall

Applies to