6 writes to GroupName
ApiExplorerWebSite (1)
ApiExplorerVisibilityEnabledConvention.cs (1)
20controller.ApiExplorer.GroupName = controller.ControllerName;
Microsoft.AspNetCore.Mvc.Core (3)
ApplicationModels\ApiExplorerModel.cs (1)
26GroupName = other.GroupName;
ApplicationModels\DefaultApplicationModelProvider.cs (2)
184controllerModel.ApiExplorer.GroupName = apiGroupName.GroupName; 292actionModel.ApiExplorer.GroupName = apiGroupName.GroupName;
Microsoft.AspNetCore.Mvc.Core.Test (2)
ApplicationModels\ActionModelTest.cs (1)
35apiExplorer.GroupName = "group1";
ApplicationModels\ControllerModelTest.cs (1)
33controller.ApiExplorer.GroupName = "group";
3 references to GroupName
Microsoft.AspNetCore.Mvc.Core (3)
ApplicationModels\ApiExplorerModel.cs (1)
26GroupName = other.GroupName;
ApplicationModels\ControllerActionDescriptorBuilder.cs (2)
138GroupName = action.ApiExplorer?.GroupName ?? controller.ApiExplorer?.GroupName,