// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.Mvc.ViewComponents { /// /// Selects a view component based on a view component name. /// public interface IViewComponentSelector { /// /// Selects a view component based on . /// /// The view component name. /// A , or null if no match is found. ViewComponentDescriptor SelectComponent(string componentName); } }