Aracılığıyla paylaş


MyExt.Foo<T, R> Yöntemi (IQbservable<T>, İfade<Func<T, R>>)

Ad Alanı:ReactiveTests.Tests
Derleme: Tests.System.Reactive (Tests.System.Reactive.dll içinde)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Foo(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.Foo(f)
public static IQbservable<R> Foo<T, R>(
    this IQbservable<T> source,
    Expression<Func<T, R>> f
)
[ExtensionAttribute]
public:
generic<typename T, typename R>
static IQbservable<R>^ Foo(
    IQbservable<T>^ source, 
    Expression<Func<T, R>^>^ f
)
static member Foo : 
        source:IQbservable<'T> * 
        f:Expression<Func<'T, 'R>> -> IQbservable<'R> 
JScript does not support generic types and methods.

Tür Parametreleri

  • T
  • R

Parametreler

Dönüş Değeri

Tür: System.Reactive.Linq.IQbservable<R>

Kullanım Notu

Visual Basic ve C# içinde bu yöntemi IQbservable<T> türündeki herhangi bir nesnede örnek yöntemi olarak çağırabilirsiniz. Bu yöntemi çağırmak için örnek yöntemi sözdizimini kullandığınızda, ilk parametreyi yok sayın. Daha fazla bilgi için bkz. veya .

Ayrıca Bkz.

Başvuru

MyExt Sınıfı

Foo Aşırı Yüklemesi

ReactiveTests.Tests Ad Alanı