AccessoryManager.MakePhoneCallWithVideo Method

Definition

Overloads

MakePhoneCallWithVideo(Guid, String)

Makes a video phone call.

MakePhoneCallWithVideo(Guid, String, PhoneCallAudioEndpoint)

Makes a video phone call.

MakePhoneCallWithVideo(Guid, String)

Makes a video phone call.

public:
 static void MakePhoneCallWithVideo(Platform::Guid phoneLine, Platform::String ^ phoneNumber);
/// [Windows.Foundation.Metadata.Overload("MakePhoneCallWithVideo")]
 static void MakePhoneCallWithVideo(winrt::guid const& phoneLine, winrt::hstring const& phoneNumber);
[Windows.Foundation.Metadata.Overload("MakePhoneCallWithVideo")]
public static void MakePhoneCallWithVideo(Guid phoneLine, string phoneNumber);
function makePhoneCallWithVideo(phoneLine, phoneNumber)
Public Shared Sub MakePhoneCallWithVideo (phoneLine As Guid, phoneNumber As String)

Parameters

phoneLine
Guid

Platform::Guid

winrt::guid

The identifier of the phone line.

phoneNumber
String

Platform::String

winrt::hstring

The number to call.

Attributes

Windows requirements

App capabilities
accessoryManager

Remarks

Calling this API requires that the ID_CAP_SMS and ID_CAP_SMS_COMPANION capabilities be specified in the application manifest.

See also

Applies to

MakePhoneCallWithVideo(Guid, String, PhoneCallAudioEndpoint)

Makes a video phone call.

public:
 static void MakePhoneCallWithVideo(Platform::Guid phoneLine, Platform::String ^ phoneNumber, PhoneCallAudioEndpoint endPoint);
/// [Windows.Foundation.Metadata.Overload("MakePhoneCallWithVideoOnAudioEndpoint")]
 static void MakePhoneCallWithVideo(winrt::guid const& phoneLine, winrt::hstring const& phoneNumber, PhoneCallAudioEndpoint const& endPoint);
[Windows.Foundation.Metadata.Overload("MakePhoneCallWithVideoOnAudioEndpoint")]
public static void MakePhoneCallWithVideo(Guid phoneLine, string phoneNumber, PhoneCallAudioEndpoint endPoint);
function makePhoneCallWithVideo(phoneLine, phoneNumber, endPoint)
Public Shared Sub MakePhoneCallWithVideo (phoneLine As Guid, phoneNumber As String, endPoint As PhoneCallAudioEndpoint)

Parameters

phoneLine
Guid

Platform::Guid

winrt::guid

The identifier of the phone line.

phoneNumber
String

Platform::String

winrt::hstring

The number to call.

endPoint
PhoneCallAudioEndpoint

The audio end point; one of the possible values of default, speaker, or hands-free.

Attributes

Windows requirements

App capabilities
accessoryManager

Remarks

Calling this API requires that the ID_CAP_SMS and ID_CAP_SMS_COMPANION capabilities be specified in the application manifest.

See also

Applies to