Share via


JsonRpcRequest.ArgumentMatchResult Enum

Definition

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

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.

Applies to