次の方法で共有


CallConnection.AddParticipantAsync メソッド

定義

オーバーロード

AddParticipantAsync(AddParticipantOptions, CancellationToken)

通話に参加者を追加します。

AddParticipantAsync(CallInvite, CancellationToken)

通話に参加者を追加します。

AddParticipantAsync(AddParticipantOptions, CancellationToken)

ソース:
CallConnection.cs
ソース:
CallConnection.cs

通話に参加者を追加します。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.AddParticipantResult>> AddParticipantAsync (Azure.Communication.CallAutomation.AddParticipantOptions options, System.Threading.CancellationToken cancellationToken = default);
abstract member AddParticipantAsync : Azure.Communication.CallAutomation.AddParticipantOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.AddParticipantResult>>
override this.AddParticipantAsync : Azure.Communication.CallAutomation.AddParticipantOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.AddParticipantResult>>
Public Overridable Function AddParticipantAsync (options As AddParticipantOptions, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of AddParticipantResult))

パラメーター

options
AddParticipantOptions

[参加者の追加] 操作のオプション。

cancellationToken
CancellationToken

キャンセル トークン。

戻り値

例外

サーバーからエラーが返されました。 サーバーから返される詳細については、「」を参照してください Message

options が null です。

適用対象

AddParticipantAsync(CallInvite, CancellationToken)

ソース:
CallConnection.cs
ソース:
CallConnection.cs

通話に参加者を追加します。

public virtual System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.AddParticipantResult>> AddParticipantAsync (Azure.Communication.CallAutomation.CallInvite participantToAdd, System.Threading.CancellationToken cancellationToken = default);
abstract member AddParticipantAsync : Azure.Communication.CallAutomation.CallInvite * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.AddParticipantResult>>
override this.AddParticipantAsync : Azure.Communication.CallAutomation.CallInvite * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response<Azure.Communication.CallAutomation.AddParticipantResult>>
Public Overridable Function AddParticipantAsync (participantToAdd As CallInvite, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response(Of AddParticipantResult))

パラメーター

participantToAdd
CallInvite

追加する参加者。

cancellationToken
CancellationToken

キャンセル トークン。

戻り値

例外

サーバーからエラーが返されました。 サーバーから返される詳細については、「」を参照してください Message

participantToAdd が null です。

適用対象