System.Net.FileWebStream.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 {
                CheckError();
                throw;
            }
        }