JsonRpcRequest.ArgumentMatchResult Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The result of an attempt to match request arguments with a candidate method's parameters.
public enum JsonRpcRequest.ArgumentMatchResult
type JsonRpcRequest.ArgumentMatchResult =
Public Enum JsonRpcRequest.ArgumentMatchResult
- Inheritance
-
JsonRpcRequest.ArgumentMatchResult
Fields
Name | Value | Description |
---|---|---|
Success | 0 | All arguments matched up with all method parameters. |
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. |
MissingArgument | 3 | An argument could not be found for a required parameter. |