SkillConversationIdFactory.GetSkillConversationReferenceAsync Method

Definition

Retrieve a SkillConversationReference with the specified ID.

public override System.Threading.Tasks.Task<Microsoft.Bot.Builder.Skills.SkillConversationReference> GetSkillConversationReferenceAsync (string skillConversationId, System.Threading.CancellationToken cancellationToken);
override this.GetSkillConversationReferenceAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Bot.Builder.Skills.SkillConversationReference>
Public Overrides Function GetSkillConversationReferenceAsync (skillConversationId As String, cancellationToken As CancellationToken) As Task(Of SkillConversationReference)

Parameters

skillConversationId
String

The ID of the SkillConversationReference to retrieve.

cancellationToken
CancellationToken

Cancellation token.

Returns

SkillConversationReference for the specified ID; null if not found.

Applies to