System.Net.WebFileStream.EndRead C# (CSharp) Method

EndRead() public method

public EndRead ( IAsyncResult ar ) : int
ar IAsyncResult
return int
        public override int EndRead(IAsyncResult ar)
        {
            try
            {
                return base.EndRead(ar);
            }
            catch
            {
                CheckAborted();
                throw;
            }
        }