DefaultParameterResolver.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
Public Overridable Function ResolveMethodParameters ( _
method As MethodDescriptor, _
values As IList(Of IJsonValue) _
) As IList(Of Object)
'Usage
Dim instance As DefaultParameterResolver
Dim method As MethodDescriptor
Dim values As IList(Of IJsonValue)
Dim returnValue As IList(Of Object)
returnValue = instance.ResolveMethodParameters(method, _
values)
public virtual IList<Object> ResolveMethodParameters(
MethodDescriptor method,
IList<IJsonValue> values
)
public:
virtual IList<Object^>^ ResolveMethodParameters(
MethodDescriptor^ method,
IList<IJsonValue^>^ values
)
abstract ResolveMethodParameters :
method:MethodDescriptor *
values:IList<IJsonValue> -> IList<Object>
override ResolveMethodParameters :
method:MethodDescriptor *
values:IList<IJsonValue> -> IList<Object>
public function ResolveMethodParameters(
method : MethodDescriptor,
values : IList<IJsonValue>
) : IList<Object>
Parameters
- method
Type: Microsoft.AspNet.SignalR.Hubs.MethodDescriptor
The method descriptor.
- values
Type: System.Collections.Generic.IList<IJsonValue>
The list of values to resolve parameter values from.
Return Value
Type: System.Collections.Generic.IList<Object>
The array of parameter values.
Implements
IParameterResolver.ResolveMethodParameters(MethodDescriptor, IList<IJsonValue>)