3 writes to ViewComponentContext
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (3)
ViewComponents\DefaultViewComponentActivatorTests.cs (2)
28expectedInstance.ViewComponentContext = context; 52expectedInstance.ViewComponentContext = context;
ViewComponentTests.cs (1)
249viewComponent.ViewComponentContext = viewComponentContext;
9 references to ViewComponentContext
Microsoft.AspNetCore.Mvc.ViewFeatures (7)
ViewComponent.cs (7)
87var services = ViewComponentContext.ViewContext?.HttpContext?.RequestServices; 89_url = factory?.GetUrlHelper(ViewComponentContext.ViewContext!); 103/// Gets or sets the <see cref="ViewComponentContext"/>. 129public ViewContext ViewContext => ViewComponentContext.ViewContext; 134public ViewDataDictionary ViewData => ViewComponentContext.ViewData; 139public ITempDataDictionary TempData => ViewComponentContext.TempData; 151var services = ViewComponentContext.ViewContext?.HttpContext?.RequestServices;
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (2)
ViewComponents\DefaultViewComponentActivatorTests.cs (2)
35Assert.Same(context, instance.ViewComponentContext); 59Assert.Same(context, instance.ViewComponentContext);