共用方式為


Chain.Case 方法

定義

多載

Case<R>(Regex, ContextualSelector<String,R>)

根據正則運算式建構案例。

Case<T,R>(Func<T,Boolean>, ContextualSelector<T,R>)

建構案例。

Case<R>(Regex, ContextualSelector<String,R>)

來源:
Chain.cs

根據正則運算式建構案例。

public static Microsoft.Bot.Builder.Dialogs.ICase<string,R> Case<R> (System.Text.RegularExpressions.Regex regex, Microsoft.Bot.Builder.Dialogs.ContextualSelector<string,R> selector);
static member Case : System.Text.RegularExpressions.Regex * Microsoft.Bot.Builder.Dialogs.ContextualSelector<string, 'R> -> Microsoft.Bot.Builder.Dialogs.ICase<string, 'R>
Public Function Case(Of R) (regex As Regex, selector As ContextualSelector(Of String, R)) As ICase(Of String, R)

類型參數

R

選取器傳回的物件類型。

參數

regex
Regex

條件的 RegEx。

selector
ContextualSelector<String,R>

案例的內容選取器。

傳回

案例。

適用於

Case<T,R>(Func<T,Boolean>, ContextualSelector<T,R>)

來源:
Chain.cs

建構案例。

public static Microsoft.Bot.Builder.Dialogs.ICase<T,R> Case<T,R> (Func<T,bool> condition, Microsoft.Bot.Builder.Dialogs.ContextualSelector<T,R> selector);
static member Case : Func<'T, bool> * Microsoft.Bot.Builder.Dialogs.ContextualSelector<'T, 'R> -> Microsoft.Bot.Builder.Dialogs.ICase<'T, 'R>
Public Function Case(Of T, R) (condition As Func(Of T, Boolean), selector As ContextualSelector(Of T, R)) As ICase(Of T, R)

類型參數

T

要區分大小寫的傳入數值型別。

R

選取器傳回的物件類型。

參數

condition
Func<T,Boolean>

案例的條件。

selector
ContextualSelector<T,R>

案例的內容選取器。

傳回

適用於