Skip to content

Commit

Permalink
Improve ServerCallContext doc comments.
Browse files Browse the repository at this point in the history
jtattermusch authored Nov 11, 2019
1 parent af1eaa0 commit 3f302c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/csharp/Grpc.Core.Api/ServerCallContext.cs
Original file line number Diff line number Diff line change
@@ -66,13 +66,13 @@ public ContextPropagationToken CreatePropagationToken(ContextPropagationOptions
/// <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>

0 comments on commit 3f302c2

Please sign in to comment.