DialogContainer Constructors
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
DialogContainer(String) |
Initializes a new instance of the DialogContainer class. |
DialogContainer(Boolean, String) |
Initializes a new instance of the DialogContainer class. |
DialogContainer(String)
Initializes a new instance of the DialogContainer class.
protected DialogContainer (string dialogId = default);
new Microsoft.Bot.Builder.Dialogs.DialogContainer : string -> Microsoft.Bot.Builder.Dialogs.DialogContainer
Protected Sub New (Optional dialogId As String = Nothing)
Parameters
- dialogId
- String
The ID to assign to the dialog.
Applies to
DialogContainer(Boolean, String)
Initializes a new instance of the DialogContainer class.
protected DialogContainer (bool ignoreMemoryScopeBinding, string dialogId = default);
new Microsoft.Bot.Builder.Dialogs.DialogContainer : bool * string -> Microsoft.Bot.Builder.Dialogs.DialogContainer
Protected Sub New (ignoreMemoryScopeBinding As Boolean, Optional dialogId As String = Nothing)
Parameters
- ignoreMemoryScopeBinding
- Boolean
False if this DialogContainer should interact with MemoryScopes.
- dialogId
- String
The ID to assign to the dialog.