OutgoingVoipPhoneCallOptions Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
OutgoingVoipPhoneCallOptions() |
Creates a default instance of OutgoingVoipPhoneCallOptions. |
OutgoingVoipPhoneCallOptions(IIterable<String>) |
Creates an instance of OutgoingVoipPhoneCallOptions from a list of device interface ids of call control devices to associate with the call. |
OutgoingVoipPhoneCallOptions()
Creates a default instance of OutgoingVoipPhoneCallOptions.
public:
OutgoingVoipPhoneCallOptions();
OutgoingVoipPhoneCallOptions();
public OutgoingVoipPhoneCallOptions();
function OutgoingVoipPhoneCallOptions()
Public Sub New ()
Windows requirements
App capabilities |
voipCall
|
Applies to
OutgoingVoipPhoneCallOptions(IIterable<String>)
Creates an instance of OutgoingVoipPhoneCallOptions from a list of device interface ids of call control devices to associate with the call.
public:
OutgoingVoipPhoneCallOptions(IIterable<Platform::String ^> ^ associatedDeviceIds);
/// [Windows.Foundation.Metadata.Experimental]
OutgoingVoipPhoneCallOptions(IIterable<winrt::hstring> const& associatedDeviceIds);
[Windows.Foundation.Metadata.Experimental]
public OutgoingVoipPhoneCallOptions(IEnumerable<string> associatedDeviceIds);
function OutgoingVoipPhoneCallOptions(associatedDeviceIds)
Public Sub New (associatedDeviceIds As IEnumerable(Of String))
Parameters
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.
- Attributes
Windows requirements
App capabilities |
voipCall
|