Enum JsonRpcRequest.ArgumentMatchResult
- Namespace
- StreamJsonRpc.Protocol
- Assembly
- StreamJsonRpc.dll
The result of an attempt to match request arguments with a candidate method's parameters.
public enum JsonRpcRequest.ArgumentMatchResult
Fields
MissingArgument = 3
An argument could not be found for a required parameter.
ParameterArgumentCountMismatch = 1
The number of arguments did not match the number of parameters.
ParameterArgumentTypeMismatch = 2
At least one argument could not be made to match its corresponding parameter.
Success = 0
All arguments matched up with all method parameters.