 | 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
SyntaxObject[] BindParameters(
IList<JsonRpcParameter> parameters,
RequestContext context
)
Function BindParameters (
parameters As IList(Of JsonRpcParameter),
context As RequestContext
) As Object()
Dim instance As IJsonRpcMethodBinder
Dim parameters As IList(Of JsonRpcParameter)
Dim context As RequestContext
Dim returnValue As Object()
returnValue = instance.BindParameters(parameters,
context)
array<Object^>^ BindParameters(
IList<JsonRpcParameter^>^ parameters,
RequestContext^ context
)
abstract BindParameters :
parameters : IList<JsonRpcParameter> *
context : RequestContext -> Object[]
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:
ObjectAn array of parameter values that will be used to invoke the actual CLR method.
Exceptions
See Also