次の方法で共有


VoipCallCoordinator.RequestNewAppInitiatedCall メソッド

定義

オーバーロード

RequestNewAppInitiatedCall(String, String, String, String, VoipCallMedia, IVector<String>, VoipPhoneCall)

重要

Windows.Phone.Networking.Voip 名前空間の型は非推奨であり、今後のバージョンの Windows では使用できない可能性があります。 代わりに、 Windows.ApplicationModel.Calls 名前空間で同等の型を使用します。

RequestNewAppInitiatedCall(String, String, String, String, VoipCallMedia, VoipPhoneCall)

重要

Windows.Phone.Networking.Voip 名前空間の型は非推奨であり、今後のバージョンの Windows では使用できない可能性があります。 代わりに、 Windows.ApplicationModel.Calls 名前空間で同等の型を使用します。

新しい呼び出しオブジェクトに対してシステムに要求を行います。

RequestNewAppInitiatedCall(String, String, String, String, VoipCallMedia, IVector<String>, VoipPhoneCall)

重要

Windows.Phone.Networking.Voip 名前空間の型は非推奨であり、今後のバージョンの Windows では使用できない可能性があります。 代わりに、 Windows.ApplicationModel.Calls 名前空間で同等の型を使用します。

public:
 virtual void RequestNewAppInitiatedCall(Platform::String ^ context, Platform::String ^ contactName, Platform::String ^ contactNumber, Platform::String ^ serviceName, VoipCallMedia media, IVector<Platform::String ^> ^ pAssociatedDeviceIds, [Out] VoipPhoneCall ^ & call) = RequestNewAppInitiatedCall;
void RequestNewAppInitiatedCall(winrt::hstring const& context, winrt::hstring const& contactName, winrt::hstring const& contactNumber, winrt::hstring const& serviceName, VoipCallMedia const& media, IVector<winrt::hstring> const& pAssociatedDeviceIds, [Out] VoipPhoneCall const& & call);
public void RequestNewAppInitiatedCall(string context, string contactName, string contactNumber, string serviceName, VoipCallMedia media, IList<string> pAssociatedDeviceIds, out VoipPhoneCall call);
Public Sub RequestNewAppInitiatedCall (context As String, contactName As String, contactNumber As String, serviceName As String, media As VoipCallMedia, pAssociatedDeviceIds As IList(Of String), ByRef call As VoipPhoneCall)

パラメーター

context
String

Platform::String

winrt::hstring

contactName
String

Platform::String

winrt::hstring

contactNumber
String

Platform::String

winrt::hstring

serviceName
String

Platform::String

winrt::hstring

pAssociatedDeviceIds

IList<String>

IVector<Platform::String>

IVector<winrt::hstring>

適用対象

RequestNewAppInitiatedCall(String, String, String, String, VoipCallMedia, VoipPhoneCall)

重要

Windows.Phone.Networking.Voip 名前空間の型は非推奨であり、今後のバージョンの Windows では使用できない可能性があります。 代わりに、 Windows.ApplicationModel.Calls 名前空間で同等の型を使用します。

新しい呼び出しオブジェクトに対してシステムに要求を行います。

public:
 virtual void RequestNewAppInitiatedCall(Platform::String ^ context, Platform::String ^ contactName, Platform::String ^ contactNumber, Platform::String ^ serviceName, VoipCallMedia media, [Out] VoipPhoneCall ^ & call) = RequestNewAppInitiatedCall;
void RequestNewAppInitiatedCall(winrt::hstring const& context, winrt::hstring const& contactName, winrt::hstring const& contactNumber, winrt::hstring const& serviceName, VoipCallMedia const& media, [Out] VoipPhoneCall const& & call);
public void RequestNewAppInitiatedCall(string context, string contactName, string contactNumber, string serviceName, VoipCallMedia media, out VoipPhoneCall call);
Public Sub RequestNewAppInitiatedCall (context As String, contactName As String, contactNumber As String, serviceName As String, media As VoipCallMedia, ByRef call As VoipPhoneCall)

パラメーター

context
String

Platform::String

winrt::hstring

関連付けられたフォアグラウンド アプリにディープ リンクとして渡される文字列。 最大長は 128 文字です。 このパラメーターは null 以外である必要があります。

contactName
String

Platform::String

winrt::hstring

着信 UI に表示される呼び出し元の連絡先名。 最大長は 128 文字です。

contactNumber
String

Platform::String

winrt::hstring

着信 UI に表示される呼び出し元の電話番号。 最大長は 128 文字です。

serviceName
String

Platform::String

winrt::hstring

VoIP サービスまたはアプリケーションの名前。 最大長は 128 文字です。

media
VoipCallMedia

通話で使用されるメディアの種類 (通話がオーディオのみではなくオーディオ/ビデオかどうか)。

call
VoipPhoneCall

新しく開始された呼び出しを表す オブジェクト。

Windows の要件

アプリの機能
ID_CAP_VOIP [Windows Phone]

注釈

このメソッドを使用して、新しい VoipPhoneCall オブジェクトを作成します。このオブジェクトを使用して、新しいアプリ内呼び出し通知を設定し、イベント ハンドラーをアタッチできます。

ユーザーが呼び出しを受け入れた場合、アプリケーションは VoipPhoneCall.NotifyCallAccepted を呼び出す必要があります。 呼び出しが拒否または応答しない場合は、 VoipPhoneCall.NotifyCallEnded を使用します。 または、システムは VoipPhoneCall オブジェクトで AnswerRequested イベントまたは RejectRequested イベントを発生させ、ユーザーが HID デバイス経由で着信通話を受け入れるか拒否するかを VoIP アプリに通知することもできます。

適用対象