  | JsonRpcRealProxySendAsyncTResult Method  | 
 [This is preliminary documentation and is subject to change.]
            Infrastructure. Asynchronously 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 Task<TResult> SendAsync<TResult>(
	int methodIndex,
	IList paramValues
)
Public Function SendAsync(Of TResult) ( 
	methodIndex As Integer,
	paramValues As IList
) As Task(Of TResult)
Dim instance As JsonRpcRealProxy
Dim methodIndex As Integer
Dim paramValues As IList
Dim returnValue As Task(Of TResult)
returnValue = instance.SendAsync(methodIndex, 
	paramValues)
public:
generic<typename TResult>
Task<TResult>^ SendAsync(
	int methodIndex, 
	IList^ paramValues
)
member SendAsync : 
        methodIndex : int * 
        paramValues : IList -> Task<'TResult> 
Parameters
- methodIndex
 - Type: SystemInt32
The JSON RPC method index in MethodTable. - paramValues
 - Type: System.CollectionsIList
Parameters, in the order of expected parameter order. 
Type Parameters
- TResult
 - Response type.
 
Return Value
Type: 
TaskTResultThe response.
Exceptions
See Also