Notification<T> Class
Represents a notification to an observer.
Namespace: System.Reactive
Assembly: System.Reactive (in System.Reactive.dll)
The Notification<T> type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | Exception | Returns the exception of an OnError notification or returns null. |
![]() | HasValue | Returns a value that indicates whether the notification has a value. |
![]() | Kind | Gets the kind of notification that is represented. |
![]() | Value | Returns the value of an OnNext notification or throws an exception. |
| Name | Description | |
|---|---|---|
![]() | Accept(IObserver<T>) | Invokes the observer's method corresponding to the notification. |
![]() | Accept(Action<T>, Action<Exception>, Action) | Invokes the delegate corresponding to the notification. |
![]() | Accept<TResult>(Func<T, TResult>, Func<Exception, TResult>, Func<TResult>) | Invokes the delegate corresponding to the notification and returns the produced result. |
![]() | Equals(Object) | Indicates whether this instance and a specified object are equal. (Overrides Object.Equals(Object).) |
![]() | Equals(Notification<T>) | Indicates whether this instance and other are equal. |
![]() | Finalize | (Inherited from Object.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetType | (Inherited from Object.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToObservable() | Returns an observable sequence with a single notification, using the immediate scheduler. |
![]() | ToObservable(IScheduler) | Returns an observable sequence with a single notification. |
![]() | ToString | (Inherited from Object.) |
| Name | Description | |
|---|---|---|
![]() ![]() | Equality | Indicates whether left and right arguments are equal. |
![]() ![]() | Inequality | Indicates whether left and right arguments are not equal. |
