次の方法で共有


ContextualSelector<T,R> 代理人

定義

コンテキスト セレクター関数。

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 

型パラメーター

T

セレクターに渡される値の型。

この型パラメーターは反変です。 つまり、指定した型、または弱い派生型のいずれかを使用することができます。 共変性および反変性の詳細については、「ジェネリックの共変性と反変性」をご覧ください。
R

セレクターの返される型。

パラメーター

context
IBotContext

IBotContext セレクターに渡されます。

item
T

セレクターに渡される値。

戻り値

R

セレクターによって返される値。

適用対象