RpcException Constructor (Status, String) |
Creates a new RpcException associated with given status and message.
Namespace: Grpc.CoreAssembly: Grpc.Core (in Grpc.Core.dll) Version: 0.6.1.0
Syntaxpublic RpcException(
Status status,
string message
)
Public Sub New (
status As Status,
message As String
)
public:
RpcException(
Status status,
String^ message
)
new :
status : Status *
message : string -> RpcException
Parameters
- status
- Type: Grpc.CoreStatus
Resulting status of a call. - message
- Type: SystemString
The exception message.
See Also