System.Net.BufferedReadStream.ReadAsyncResult.End C# (CSharp) Method

End() static private method

static private End ( IAsyncResult result ) : int
result IAsyncResult
return int
            internal static int End(IAsyncResult result)
            {
                ReadAsyncResult thisPtr = (ReadAsyncResult)result;
                thisPtr.InternalWaitForCompletion();
                return thisPtr._read;
            }
BufferedReadStream.ReadAsyncResult