Dela via


CommandDialog<T>.On<U> Metod

Definition

Definiera en hanterare som utlöses på en matchning av reguljära uttryck för ett meddelande.

public Microsoft.Bot.Builder.Dialogs.CommandDialog<T> On<U> (System.Text.RegularExpressions.Regex expression, Microsoft.Bot.Builder.Dialogs.ResumeAfter<Microsoft.Bot.Connector.IMessageActivity> handler, Microsoft.Bot.Builder.Dialogs.ResumeAfter<U> resultHandler = default);
member this.On : System.Text.RegularExpressions.Regex * Microsoft.Bot.Builder.Dialogs.ResumeAfter<Microsoft.Bot.Connector.IMessageActivity> * Microsoft.Bot.Builder.Dialogs.ResumeAfter<'U> -> Microsoft.Bot.Builder.Dialogs.CommandDialog<'T>
Public Function On(Of U) (expression As Regex, handler As ResumeAfter(Of IMessageActivity), Optional resultHandler As ResumeAfter(Of U) = Nothing) As CommandDialog(Of T)

Typparametrar

U

Typ av indata till resultathanteraren.

Parametrar

expression
Regex

Reguljärt uttryck som ska matchas.

handler
ResumeAfter<IMessageActivity>

Hanterare för att anropa på matchning.

resultHandler
ResumeAfter<U>

Valfri resultathanterare som ska anropas om hanteraren skapar en chaild-dialogruta.

Returer

Ett kommandoDialog.

Gäller för