Namespace:ReactiveTests.Tests
アセンブリ: Tests.System.Reactive (Tests.System.Reactive.dll)
構文
'Declaration
<ExtensionAttribute> _
Public Shared Function Baz(Of T, R) ( _
source As IQbservable(Of T), _
f As Expression(Of Func(Of T, R)) _
) As IQbservable(Of R)
'Usage
Dim source As IQbservable(Of T)
Dim f As Expression(Of Func(Of T, R))
Dim returnValue As IQbservable(Of R)
returnValue = source.Baz(f)
public static IQbservable<R> Baz<T, R>(
this IQbservable<T> source,
Expression<Func<T, R>> f
)
[ExtensionAttribute]
public:
generic<typename T, typename R>
static IQbservable<R>^ Baz(
IQbservable<T>^ source,
Expression<Func<T, R>^>^ f
)
static member Baz :
source:IQbservable<'T> *
f:Expression<Func<'T, 'R>> -> IQbservable<'R>
JScript does not support generic types and methods.
型パラメーター
- T
- R
パラメーター
- source
型: System.Reactive.Linq.IQbservable<T>
- f
型: System.Linq.Expressions.Expression<Func<T, R>>
戻り値
型: System.Reactive.Linq.IQbservable<R>
使用上の注意
Visual Basic と C# では、 IQbservable<T> 型の任意のオブジェクトのインスタンス メソッドとしてこのメソッドを呼び出すことができます。 インスタンス メソッド構文を使用してこのメソッドを呼び出す場合は、最初のパラメーターを省略します。 詳細については、」または」を参照してください。