2 writes to ControllerType
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationModels\ControllerModel.cs (2)
31ControllerType = controllerType; 52ControllerType = other.ControllerType;
12 references to ControllerType
Microsoft.AspNetCore.Mvc.Core (10)
ApplicationModels\ActionModel.cs (2)
174var controllerType = TypeNameHelper.GetTypeDisplayName(Controller.ControllerType); 175var controllerAssembly = Controller?.ControllerType.Assembly.GetName().Name;
ApplicationModels\ApiBehaviorApplicationModelProvider.cs (1)
124var controllerAssembly = controller.ControllerType.Assembly;
ApplicationModels\ApiConventionApplicationModelConvention.cs (2)
66var controllerAssembly = controller.ControllerType.Assembly; 81action.Controller.ControllerType.Assembly.GetCustomAttribute<ProducesErrorResponseTypeAttribute>() ??
ApplicationModels\ControllerActionDescriptorBuilder.cs (1)
39actionDescriptor.ControllerTypeInfo = controller.ControllerType;
ApplicationModels\ControllerModel.cs (4)
52ControllerType = other.ControllerType; 98MemberInfo ICommonModel.MemberInfo => ControllerType; 154var controllerType = TypeNameHelper.GetTypeDisplayName(ControllerType); 155var controllerAssembly = ControllerType.Assembly.GetName().Name;
Microsoft.AspNetCore.Mvc.ViewFeatures (2)
Filters\TempDataApplicationModelProvider.cs (1)
34var modelType = controllerModel.ControllerType.AsType();
Filters\ViewDataAttributeApplicationModelProvider.cs (1)
26var controllerType = controllerModel.ControllerType.AsType();