Click or drag to resize

IJsonRpcMethodBinderBindParameters Method

[This is preliminary documentation and is subject to change.]

Binds the parameters contained in the specified JSON RPC request to the specified a parameter list.

Namespace:  JsonRpc.Contracts
Assembly:  JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntax
Object[] BindParameters(
	IList<JsonRpcParameter> parameters,
	RequestContext context
)

Parameters

parameters
Type: System.Collections.GenericIListJsonRpcParameter
The target JSON RPC method parameters.
context
Type: JsonRpc.ServerRequestContext
The request context containing the parameters to be converted.

Return Value

Type: Object
An array of parameter values that will be used to invoke the actual CLR method.
Exceptions
ExceptionCondition
ArgumentNullExceptionEither parameters or context is null.
See Also