你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Conversation.RemoveParticipantAsync 方法

定义

重载

RemoveParticipantAsync(Participant)

使用参与者对象异步删除对话中的参与者。

RemoveParticipantAsync(User)

使用 User 对象异步删除对话中的参与者。

RemoveParticipantAsync(String)

使用用户标识符异步从对话中删除参与者。

RemoveParticipantAsync(Participant)

使用参与者对象异步删除对话中的参与者。

public System.Threading.Tasks.Task RemoveParticipantAsync (Microsoft.CognitiveServices.Speech.Transcription.Participant participant);
member this.RemoveParticipantAsync : Microsoft.CognitiveServices.Speech.Transcription.Participant -> System.Threading.Tasks.Task
Public Function RemoveParticipantAsync (participant As Participant) As Task

参数

participant
Participant

一个 Participant 对象。

返回

表示添加参与者的异步操作。

适用于

RemoveParticipantAsync(User)

使用 User 对象异步删除对话中的参与者。

public System.Threading.Tasks.Task RemoveParticipantAsync (Microsoft.CognitiveServices.Speech.Transcription.User user);
member this.RemoveParticipantAsync : Microsoft.CognitiveServices.Speech.Transcription.User -> System.Threading.Tasks.Task
Public Function RemoveParticipantAsync (user As User) As Task

参数

user
User

User 对象。

返回

表示删除参与者的异步操作。

适用于

RemoveParticipantAsync(String)

使用用户标识符异步从对话中删除参与者。

public System.Threading.Tasks.Task RemoveParticipantAsync (string userId);
member this.RemoveParticipantAsync : string -> System.Threading.Tasks.Task
Public Function RemoveParticipantAsync (userId As String) As Task

参数

userId
String

一个用户标识符。

返回

表示删除参与者的异步操作。

适用于