MyExt.Bar Method (IQbservable<Int32>)

Namespace:  ReactiveTests.Tests
Assembly:  Tests.System.Reactive (in Tests.System.Reactive.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Bar ( _
    source As IQbservable(Of Integer) _
) As IQbservable(Of String)
'Usage
Dim source As IQbservable(Of Integer)
Dim returnValue As IQbservable(Of String)

returnValue = source.Bar()
public static IQbservable<string> Bar(
    this IQbservable<int> source
)
[ExtensionAttribute]
public:
static IQbservable<String^>^ Bar(
    IQbservable<int>^ source
)
static member Bar : 
        source:IQbservable<int> -> IQbservable<string> 
public static function Bar(
    source : IQbservable<int>
) : IQbservable<String>

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<String>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<Int32>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also

Reference

MyExt Class

Bar Overload

ReactiveTests.Tests Namespace