Lines Matching refs:ResponseStream
253 var responseList = await call.ResponseStream.ToListAsync(); in RunServerStreamingAsync()
271 Assert.IsTrue(await call.ResponseStream.MoveNext()); in RunPingPongAsync()
272 Assert.AreEqual(31415, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
280 Assert.IsTrue(await call.ResponseStream.MoveNext()); in RunPingPongAsync()
281 Assert.AreEqual(9, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
289 Assert.IsTrue(await call.ResponseStream.MoveNext()); in RunPingPongAsync()
290 Assert.AreEqual(2653, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
298 Assert.IsTrue(await call.ResponseStream.MoveNext()); in RunPingPongAsync()
299 Assert.AreEqual(58979, call.ResponseStream.Current.Payload.Body.Length); in RunPingPongAsync()
303 Assert.IsFalse(await call.ResponseStream.MoveNext()); in RunPingPongAsync()
315 var responseList = await call.ResponseStream.ToListAsync(); in RunEmptyStreamAsync()
430 Assert.IsTrue(await call.ResponseStream.MoveNext()); in RunCancelAfterFirstResponseAsync()
431 Assert.AreEqual(31415, call.ResponseStream.Current.Payload.Body.Length); in RunCancelAfterFirstResponseAsync()
438 await call.ResponseStream.MoveNext(); in RunCancelAfterFirstResponseAsync()
471 await call.ResponseStream.MoveNext(); in RunTimeoutOnSleepingServerAsync()
516 await call.ResponseStream.ToListAsync(); in RunCustomMetadataAsync()
557 await call.ResponseStream.ToListAsync(); in RunStatusCodeAndMessageAsync()