make C# CallError enum up to date with C core

pull/23932/head
Jan Tattermusch 5 years ago
parent f7fbbc1cf0
commit 9d51ce6076
  1. 15
      src/csharp/Grpc.Core/Internal/CallError.cs

@ -47,7 +47,20 @@ namespace Grpc.Core.Internal
/* there is already an outstanding read/write operation on the call */
TooManyOperations,
/* the flags value was illegal for this call */
InvalidFlags
InvalidFlags,
/* invalid metadata was passed to this call */
InvalidMetadata,
/* invalid message was passed to this call */
InvalidMessage,
/* completion queue for notification has not been registered
with the server */
NotServerCompletionQueue,
/* this batch of operations leads to more operations than allowed */
BatchTooBig,
/* payload type requested is not the type registered */
PayloadTypeMismatch,
/* completion queue has been shutdown */
CompletionQueueShutdown
}
internal static class CallErrorExtensions

Loading…
Cancel
Save