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.
Returns an observable sequence with a single notification, using the immediate scheduler.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
Syntax
'Declaration
Public Function ToObservable As IObservable(Of T)
'Usage
Dim instance As Notification
Dim returnValue As IObservable(Of T)
returnValue = instance.ToObservable()
public IObservable<T> ToObservable()
public:
IObservable<T>^ ToObservable()
member ToObservable : unit -> IObservable<'T>
public function ToObservable() : IObservable<T>
Return Value
Type: System.IObservable<T>
The observable sequence that surfaces the behavior of the notification upon subscription.