Implemented interface member:
property
ApiExplorer
Microsoft.AspNetCore.Mvc.ApplicationModels.IApiExplorerModel.ApiExplorer
2 writes to ApiExplorer
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationModels\ControllerModel.cs (2)
34ApiExplorer = new ApiExplorerModel(); 65ApiExplorer = new ApiExplorerModel(other.ApiExplorer);
11 references to ApiExplorer
Microsoft.AspNetCore.Mvc.Core (11)
ApplicationModels\ActionModel.cs (1)
88/// <see cref="ApplicationModel.ApiExplorer"/> and <see cref="ControllerModel.ApiExplorer"/>.
ApplicationModels\ApiVisibilityConvention.cs (1)
19if (action.Controller.ApiExplorer.IsVisible == null && action.ApiExplorer.IsVisible == null)
ApplicationModels\ApplicationModel.cs (1)
32/// <see cref="ControllerModel.ApiExplorer"/> or <see cref="ActionModel.ApiExplorer"/>.
ApplicationModels\ControllerActionDescriptorBuilder.cs (3)
108controller.ApiExplorer?.IsVisible ?? 114controller.ApiExplorer?.IsVisible ?? 138GroupName = action.ApiExplorer?.GroupName ?? controller.ApiExplorer?.GroupName,
ApplicationModels\ControllerModel.cs (3)
65ApiExplorer = new ApiExplorerModel(other.ApiExplorer); 80/// <see cref="ControllerModel.ApiExplorer"/> allows configuration of settings for ApiExplorer 83/// Settings applied by <see cref="ControllerModel.ApiExplorer"/> override settings from
ApplicationModels\DefaultApplicationModelProvider.cs (2)
179controllerModel.ApiExplorer.IsVisible = !apiVisibility.IgnoreApi; 185controllerModel.ApiExplorer.GroupName = apiGroupName.GroupName;