ConversationTranslator.JoinConversationAsync Method
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
JoinConversationAsync(Conversation, String) |
Joins an existing conversation. You should use this method if you have created a conversation using CreateConversationAsync(SpeechConfig, String). |
JoinConversationAsync(String, String, String) |
Joins an existing conversation. |
JoinConversationAsync(Conversation, String)
Joins an existing conversation. You should use this method if you have created a conversation using CreateConversationAsync(SpeechConfig, String).
public System.Threading.Tasks.Task JoinConversationAsync (Microsoft.CognitiveServices.Speech.Transcription.Conversation conversation, string nickname);
member this.JoinConversationAsync : Microsoft.CognitiveServices.Speech.Transcription.Conversation * string -> System.Threading.Tasks.Task
Public Function JoinConversationAsync (conversation As Conversation, nickname As String) As Task
Parameters
- conversation
- Conversation
The conversation to join.
- nickname
- String
The display name to use for the current participant.
Returns
An asynchronous operation.
Applies to
JoinConversationAsync(String, String, String)
Joins an existing conversation.
public System.Threading.Tasks.Task JoinConversationAsync (string conversationId, string nickname, string lang);
member this.JoinConversationAsync : string * string * string -> System.Threading.Tasks.Task
Public Function JoinConversationAsync (conversationId As String, nickname As String, lang As String) As Task
Parameters
- conversationId
- String
The unique identifier for the conversation to join.
- nickname
- String
The display name to use for the current participant.
- lang
- String
The speech language to use for the current participant.
Returns
An asynchronous operation.