Improve ServerCallContext doc comments.

pull/20997/head
Jan Tattermusch 5 years ago committed by GitHub
parent af1eaa0d05
commit 3f302c2c04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/csharp/Grpc.Core.Api/ServerCallContext.cs

@ -66,13 +66,13 @@ namespace Grpc.Core
/// <summary>Address of the remote endpoint in URI format.</summary>
public string Peer => PeerCore;
/// <summary>Deadline for this RPC.</summary>
/// <summary>Deadline for this RPC. The call will be automatically cancelled once the deadline is exceeded.</summary>
public DateTime Deadline => DeadlineCore;
/// <summary>Initial metadata sent by client.</summary>
public Metadata RequestHeaders => RequestHeadersCore;
/// <summary>Cancellation token signals when call is cancelled.</summary>
/// <summary>Cancellation token signals when call is cancelled. It is also triggered when the deadline is exceeeded or there was some other error (e.g. network problem).</summary>
public CancellationToken CancellationToken => CancellationTokenCore;
/// <summary>Trailers to send back to client after RPC finishes.</summary>

Loading…
Cancel
Save