aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/csharp/Grpc.Core
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2017-10-05 16:11:34 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-10-05 16:11:34 +0200
commitee35223174a0c48707d4148a5e87e0ec4942d41c (patch)
treea9fb32c9ca74191d17b997a3d5e5ed45cd97b2d8 /src/csharp/Grpc.Core
parentf8c9bcdc0f083e29302ab10cf11ea1c645edf4ae (diff)
improve docs
Diffstat (limited to 'src/csharp/Grpc.Core')
-rw-r--r--src/csharp/Grpc.Core/IAsyncStreamReader.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/csharp/Grpc.Core/IAsyncStreamReader.cs b/src/csharp/Grpc.Core/IAsyncStreamReader.cs
index 4a169fcca5..3751d549e3 100644
--- a/src/csharp/Grpc.Core/IAsyncStreamReader.cs
+++ b/src/csharp/Grpc.Core/IAsyncStreamReader.cs
@@ -44,7 +44,9 @@ namespace Grpc.Core
/// <para>
/// <c>MoveNext()</c> operations can be cancelled via a cancellation token. Cancelling
/// an individual read operation has the same effect as cancelling the entire call
- /// (which will also result in the read operation returning prematurely).
+ /// (which will also result in the read operation returning prematurely), but the per-read cancellation
+ /// tokens passed to MoveNext() only result in cancelling the call if the read operation haven't finished
+ /// yet.
/// </para>
/// </summary>
/// <typeparam name="T">The message type.</typeparam>