System.Net.FileWebStream.EndRead C# (CSharp) 메소드

EndRead() 공개 메소드

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