Click or drag to resize

IJsonRpcRequestMarshalerMarshalParameters Method

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

Marshals the specified parameter values into JSON used as Request.params value.

Namespace:  JsonRpc.Contracts
Assembly:  JsonRpc.Commons (in JsonRpc.Commons.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntax
MarshaledRequestParameters MarshalParameters(
	IList<JsonRpcParameter> parameters,
	IList values
)

Parameters

parameters
Type: System.Collections.GenericIListJsonRpcParameter
The parameters of the method.
values
Type: System.CollectionsIList
The values of the method. null is treated the same as empty array.

Return Value

Type: MarshaledRequestParameters
The marshaled parameter value object or array or null for Request.params to be neglected.
Exceptions
ExceptionCondition
ArgumentNullExceptionparameters is null.
See Also