Skip to content
Snippets Groups Projects
Commit 22504547 authored by Jan Tattermusch's avatar Jan Tattermusch
Browse files

forgot to expose status and trailers for unary call

parent 3526db5d
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,24 @@ namespace Grpc.Core ...@@ -88,6 +88,24 @@ namespace Grpc.Core
return responseAsync.GetAwaiter(); return responseAsync.GetAwaiter();
} }
/// <summary>
/// Gets the call status if the call has already finished.
/// Throws InvalidOperationException otherwise.
/// </summary>
public Status GetStatus()
{
return getStatusFunc();
}
/// <summary>
/// Gets the call trailing metadata if the call has already finished.
/// Throws InvalidOperationException otherwise.
/// </summary>
public Metadata GetTrailers()
{
return getTrailersFunc();
}
/// <summary> /// <summary>
/// Provides means to cleanup after the call. /// Provides means to cleanup after the call.
/// If the call has already finished normally (request stream has been completed and call result has been received), doesn't do anything. /// If the call has already finished normally (request stream has been completed and call result has been received), doesn't do anything.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment