DialogContainer.FindDialog(String) Method

Definition

Finds a child dialog that was previously added to the container.

public virtual Microsoft.Bot.Builder.Dialogs.Dialog FindDialog (string dialogId);
abstract member FindDialog : string -> Microsoft.Bot.Builder.Dialogs.Dialog
override this.FindDialog : string -> Microsoft.Bot.Builder.Dialogs.Dialog
Public Overridable Function FindDialog (dialogId As String) As Dialog

Parameters

dialogId
String

The ID of the dialog to lookup.

Returns

Dialog

The Dialog if found; otherwise null.

Applies to