IActionSelector 接口

定义

定义一个接口,用于选择要为当前请求调用的 MVC 操作。

public interface class IActionSelector
public interface IActionSelector
type IActionSelector = interface
Public Interface IActionSelector

方法

SelectBestCandidate(RouteContext, IReadOnlyList<ActionDescriptor>)

从 中选择与 关联的context当前请求的最佳ActionDescriptor候选项candidates

SelectCandidates(RouteContext)

为与 context关联的当前请求选择一组ActionDescriptor候选项。

适用于