IParameterResolver.ResolveMethodParameters Method

.NET Framework 4

Resolves method parameter values based on provided objects.

Namespace:  Microsoft.AspNet.SignalR.Hubs
Assembly:  Microsoft.AspNet.SignalR.Core (in Microsoft.AspNet.SignalR.Core.dll)

Syntax

'Declaration
Function ResolveMethodParameters ( _
    method As MethodDescriptor, _
    values As IList(Of IJsonValue) _
) As IList(Of Object)
'Usage
Dim instance As IParameterResolver 
Dim method As MethodDescriptor 
Dim values As IList(Of IJsonValue)
Dim returnValue As IList(Of Object)

returnValue = instance.ResolveMethodParameters(method, _
    values)
IList<Object> ResolveMethodParameters(
    MethodDescriptor method,
    IList<IJsonValue> values
)
IList<Object^>^ ResolveMethodParameters(
    MethodDescriptor^ method, 
    IList<IJsonValue^>^ values
)
abstract ResolveMethodParameters : 
        method:MethodDescriptor * 
        values:IList<IJsonValue> -> IList<Object> 
function ResolveMethodParameters(
    method : MethodDescriptor, 
    values : IList<IJsonValue>
) : IList<Object>

Parameters

Return Value

Type: System.Collections.Generic.IList<Object>
Array of parameter values.

See Also

Reference

IParameterResolver Interface

Microsoft.AspNet.SignalR.Hubs Namespace