diff options
author | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-06-06 14:32:06 -0700 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@users.noreply.github.com> | 2016-06-06 14:32:06 -0700 |
commit | dda1aed92ac714753fbef7d9eeec62c739057e11 (patch) | |
tree | 04963ab1b0794e9b24c82d36fc684aff8bac6208 /src/csharp/Grpc.Core/AsyncServerStreamingCall.cs | |
parent | c3a8307c4b256da07f516720d1f7cd70f329f2c1 (diff) | |
parent | a134fa7036d51e539714fa41b0ec780e084bab46 (diff) |
Merge pull request #6794 from jtattermusch/csharp_misc_fixes
C# assorted GA improvements (docs and polish)
Diffstat (limited to 'src/csharp/Grpc.Core/AsyncServerStreamingCall.cs')
-rw-r--r-- | src/csharp/Grpc.Core/AsyncServerStreamingCall.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/csharp/Grpc.Core/AsyncServerStreamingCall.cs b/src/csharp/Grpc.Core/AsyncServerStreamingCall.cs index f953091984..5777c72615 100644 --- a/src/csharp/Grpc.Core/AsyncServerStreamingCall.cs +++ b/src/csharp/Grpc.Core/AsyncServerStreamingCall.cs @@ -103,6 +103,10 @@ namespace Grpc.Core /// Otherwise, requests cancellation of the call which should terminate all pending async operations associated with the call. /// As a result, all resources being used by the call should be released eventually. /// </summary> + /// <remarks> + /// Normally, there is no need for you to dispose the call unless you want to utilize the + /// "Cancel" semantics of invoking <c>Dispose</c>. + /// </remarks> public void Dispose() { disposeAction.Invoke(); |