MyExt.Bar Method (IObservable<Int32>)
Namespace: ReactiveTests.Tests
Assembly: Tests.System.Reactive (in Tests.System.Reactive.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function Bar ( _
source As IObservable(Of Integer) _
) As IObservable(Of String)
'Usage
Dim source As IObservable(Of Integer)
Dim returnValue As IObservable(Of String)
returnValue = source.Bar()
public static IObservable<string> Bar(
this IObservable<int> source
)
[ExtensionAttribute]
public:
static IObservable<String^>^ Bar(
IObservable<int>^ source
)
static member Bar :
source:IObservable<int> -> IObservable<string>
public static function Bar(
source : IObservable<int>
) : IObservable<String>
Parameters
- source
Type: System.IObservable<Int32>
Return Value
Type: System.IObservable<String>
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IObservable<Int32>. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .