| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | 
							- // Licensed to the .NET Foundation under one or more agreements.
 
- // The .NET Foundation licenses this file to you under the Apache 2.0 License.
 
- // See the LICENSE file in the project root for more information. 
 
- namespace System.Reactive.Linq
 
- {
 
-     partial class AsyncObservable
 
-     {
 
-         public static IAsyncObservable<TSource> Take<TSource>(this IAsyncObservable<TSource> source, int count)
 
-         {
 
-             if (source == null)
 
-                 throw new ArgumentNullException(nameof(source));
 
-             if (count < 0)
 
-                 throw new ArgumentOutOfRangeException(nameof(count));
 
-             if (count == 0)
 
-             {
 
-                 return Empty<TSource>();
 
-             }
 
-             return Create<TSource>(observer => source.SubscribeAsync(AsyncObserver.Take(observer, count)));
 
-         }
 
-     }
 
-     partial class AsyncObserver
 
-     {
 
-         public static IAsyncObserver<TSource> Take<TSource>(IAsyncObserver<TSource> observer, int count)
 
-         {
 
-             if (observer == null)
 
-                 throw new ArgumentNullException(nameof(observer));
 
-             if (count <= 0)
 
-                 throw new ArgumentOutOfRangeException(nameof(count));
 
-             return Create<TSource>(
 
-                 async x =>
 
-                 {
 
-                     var remaining = --count;
 
-                     await observer.OnNextAsync(x).ConfigureAwait(false);
 
-                     if (remaining == 0)
 
-                     {
 
-                         await observer.OnCompletedAsync().ConfigureAwait(false);
 
-                     }
 
-                 },
 
-                 observer.OnErrorAsync,
 
-                 observer.OnCompletedAsync
 
-             );
 
-         }
 
-     }
 
- }
 
 
  |