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
选择器返回的值。