 | JsonRpcRealProxySendTResult Method (Int32, IList) |
[This is preliminary documentation and is subject to change.]
Infrastructure. Sends the request and wait for the response.
Namespace:
JsonRpc.DynamicProxy.Client
Assembly:
JsonRpc.DynamicProxy (in JsonRpc.DynamicProxy.dll) Version: 0.5.4+1bad715934a0ae5922832940ca44bbbdaa509cfe
Syntaxpublic TResult Send<TResult>(
int methodIndex,
IList paramValues
)
Public Function Send(Of TResult) (
methodIndex As Integer,
paramValues As IList
) As TResult
Dim instance As JsonRpcRealProxy
Dim methodIndex As Integer
Dim paramValues As IList
Dim returnValue As TResult
returnValue = instance.Send(methodIndex,
paramValues)
public:
generic<typename TResult>
TResult Send(
int methodIndex,
IList^ paramValues
)
member Send :
methodIndex : int *
paramValues : IList -> 'TResult
Parameters
- methodIndex
- Type: SystemInt32
[Missing <param name="methodIndex"/> documentation for "M:JsonRpc.DynamicProxy.Client.JsonRpcRealProxy.Send``1(System.Int32,System.Collections.IList)"]
- paramValues
- Type: System.CollectionsIList
[Missing <param name="paramValues"/> documentation for "M:JsonRpc.DynamicProxy.Client.JsonRpcRealProxy.Send``1(System.Int32,System.Collections.IList)"]
Type Parameters
- TResult
[Missing <typeparam name="TResult"/> documentation for "M:JsonRpc.DynamicProxy.Client.JsonRpcRealProxy.Send``1(System.Int32,System.Collections.IList)"]
Return Value
Type:
TResult
See Also