ContextualSelector<T,R> 代理人
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
關聯式選取器函式。
public delegate R ContextualSelector<in T,R>(IBotContext context, T item);
type ContextualSelector<'T, 'R> = delegate of IBotContext * 'T -> 'R
Public Delegate Function ContextualSelector(Of In T, R)(context As IBotContext, item As T) As R
類型參數
- R
選取器傳回的類型。
參數
- context
- IBotContext
IBotContext 傳遞至選取器。
- item
- T
傳遞至選取器的值。
傳回值
R
選取器傳回的值。