Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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
- source
Type: System.Reactive.Linq.IQbservable<Int32>
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 .