// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.md in the project root for license information. using System.Collections.Generic; using Microsoft.AspNet.SignalR.Json; namespace Microsoft.AspNet.SignalR.Hubs { /// /// Describes a parameter resolver for resolving parameter-matching values based on provided information. /// public interface IParameterResolver { /// /// Resolves method parameter values based on provided objects. /// /// Method descriptor. /// List of values to resolve parameter values from. /// Array of parameter values. IList ResolveMethodParameters(MethodDescriptor method, IList values); } }