共用方式為


ScorableBase<Item,State,Score> 類別

定義

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

[System.Serializable]
public abstract class ScorableBase<Item,State,Score> : Microsoft.Bot.Builder.Scorables.IScorable<Item,Score>
[<System.Serializable>]
type ScorableBase<'Item, 'State, 'Score> = class
    interface IScorable<'Item, 'Score>
Public MustInherit Class ScorableBase(Of Item, State, Score)
Implements IScorable(Of Item, Score)

類型參數

Item
State
Score
繼承
ScorableBase<Item,State,Score>
衍生
屬性
實作

備註

IScorable 方法會標示為 DebuggerStepThrough,因為一旦編譯器驗證了實作抽象狀態類型方法之衍生類別的型別安全,這些 DebuggerStepThrough 方法將不會因為執行時間類型錯誤而擲回例外狀況。

建構函式

ScorableBase<Item,State,Score>()

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

方法

DoneAsync(Item, State, CancellationToken)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

GetScore(Item, State)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

HasScore(Item, State)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

PostAsync(Item, State, CancellationToken)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

PrepareAsync(Item, CancellationToken)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

明確介面實作

IScorable<Item,Score>.DoneAsync(Item, Object, CancellationToken)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

IScorable<Item,Score>.GetScore(Item, Object)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

IScorable<Item,Score>.HasScore(Item, Object)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

IScorable<Item,Score>.PostAsync(Item, Object, CancellationToken)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

IScorable<Item,Score>.PrepareAsync(Item, CancellationToken)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

擴充方法

SelectItem<SourceItem,TargetItem,Score>(IScorable<TargetItem,Score>, Func<SourceItem,TargetItem>)

使用 Lambda 運算式投影可評分的專案。

SelectScore<Item,SourceScore,TargetScore>(IScorable<Item,SourceScore>, Func<Item,SourceScore,TargetScore>)

使用 Lambda 運算式來投影可評分的分數。

TryPostAsync<Item,Score>(IScorable<Item,Score>, Item, CancellationToken)

針對單一可評分呼叫通訊協定叫用可評分的呼叫通訊協定。

WhereScore<Item,Score>(IScorable<Item,Score>, Func<Item,Score,Boolean>)

允許靜態類型檢查不透明狀態,以方便進行可評分實作。

適用於