ALinq.AsyncEnumerable.Dispose C# (CSharp) 메소드

Dispose() 정적인 개인적인 메소드

static private Dispose ( this asyncEnumerator ) : void
asyncEnumerator this
리턴 void
        internal static void Dispose(this IAsyncEnumerator asyncEnumerator)
        {
            var disposable = asyncEnumerator as IDisposable;

            if (disposable != null)
            {
                disposable.Dispose();
            }
        }
    }