Merge pull request #20603 from jtattermusch/rpcexception_improve_docs

Improve RpcException doc comments
pull/20623/head
Jan Tattermusch 5 years ago committed by GitHub
commit 348f29f04b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/csharp/Grpc.Core.Api/RpcException.cs

@ -39,6 +39,8 @@ namespace Grpc.Core
/// <summary>
/// Creates a new <c>RpcException</c> associated with given status and message.
/// NOTE: the exception message is not sent to the remote peer. Use <c>status.Details</c> to pass error
/// details to the peer.
/// </summary>
/// <param name="status">Resulting status of a call.</param>
/// <param name="message">The exception message.</param>
@ -57,6 +59,8 @@ namespace Grpc.Core
/// <summary>
/// Creates a new <c>RpcException</c> associated with given status, message and trailing response metadata.
/// NOTE: the exception message is not sent to the remote peer. Use <c>status.Details</c> to pass error
/// details to the peer.
/// </summary>
/// <param name="status">Resulting status of a call.</param>
/// <param name="trailers">Response trailing metadata.</param>

Loading…
Cancel
Save