Notification<T>
Represents a notification to an observer.
Returns the exception of an OnError notification or returns null.
Returns a value that indicates whether the notification has a value.
Gets the kind of notification that is represented.
Returns the value of an OnNext notification or throws an exception.
Determines whether the two specified Notification<T> objects have the same observer message payload.
Determines whether the two specified Notification<T> objects have a different observer message payload.
Invokes the observer's method corresponding to the notification.
Invokes the observer's method corresponding to the notification and returns the produced result.
Invokes the delegate corresponding to the notification.
public abstract TResult Accept<TResult>(Func<T, TResult> onNext, Func<Exception, TResult> onError, Func<TResult> onCompleted)
Invokes the delegate corresponding to the notification and returns the produced result.
Determines whether the current Notification<T> object has the same observer message payload as a specified Notification<T> value.
Returns an observable sequence with a single notification, using the immediate scheduler.
Returns an observable sequence with a single notification.