Never.cs 602 B

12345678910111213141516171819
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the Apache 2.0 License.
  3. // See the LICENSE file in the project root for more information.
  4. using System.Reactive.Disposables;
  5. namespace System.Reactive.Linq.ObservableImpl
  6. {
  7. internal sealed class Never<TResult> : IObservable<TResult>
  8. {
  9. public IDisposable Subscribe(IObserver<TResult> observer)
  10. {
  11. if (observer == null)
  12. throw new ArgumentNullException(nameof(observer));
  13. return Disposable.Empty;
  14. }
  15. }
  16. }