HttpResponse.EndFlush(IAsyncResult) 方法
定义
完成异步刷新操作。Completes an asynchronous flush operation.
public:
void EndFlush(IAsyncResult ^ asyncResult);
public void EndFlush (IAsyncResult asyncResult);
member this.EndFlush : IAsyncResult -> unit
Public Sub EndFlush (asyncResult As IAsyncResult)
参数
- asyncResult
- IAsyncResult
异步结果对象。The asynchronous result object.
例外
不支持异步刷新,且 asyncResult
参数为 null
。Asynchronous flush is not supported and the asyncResult
parameter is null
.
不支持异步刷新,且 asyncResult
参数不能转换到 FlushAsyncResult 对象。Asynchronous flush is not supported and the
asyncResult
parameter cannot be cast to a FlushAsyncResult
object.