Implemented interface member:
property
ApiExplorer
Microsoft.AspNetCore.Mvc.ApplicationModels.IApiExplorerModel.ApiExplorer
2 writes to ApiExplorer
Microsoft.AspNetCore.Mvc.Core (2)
ApplicationModels\ActionModel.cs (2)
34ApiExplorer = new ApiExplorerModel(); 65ApiExplorer = new ApiExplorerModel(other.ApiExplorer);
12 references to ApiExplorer
Microsoft.AspNetCore.Mvc.Core (12)
ApplicationModels\ActionModel.cs (3)
65ApiExplorer = new ApiExplorerModel(other.ApiExplorer); 84/// <see cref="ActionModel.ApiExplorer"/> allows configuration of settings for ApiExplorer 87/// Settings applied by <see cref="ActionModel.ApiExplorer"/> override settings from
ApplicationModels\ApiVisibilityConvention.cs (2)
19if (action.Controller.ApiExplorer.IsVisible == null && action.ApiExplorer.IsVisible == null) 22action.ApiExplorer.IsVisible = true;
ApplicationModels\ApplicationModel.cs (1)
32/// <see cref="ControllerModel.ApiExplorer"/> or <see cref="ActionModel.ApiExplorer"/>.
ApplicationModels\ControllerActionDescriptorBuilder.cs (3)
107action.ApiExplorer?.IsVisible ?? 113action.ApiExplorer?.IsVisible ?? 138GroupName = action.ApiExplorer?.GroupName ?? controller.ApiExplorer?.GroupName,
ApplicationModels\ControllerModel.cs (1)
81/// which apply to all actions in the controller unless overridden by <see cref="ActionModel.ApiExplorer"/>.
ApplicationModels\DefaultApplicationModelProvider.cs (2)
287actionModel.ApiExplorer.IsVisible = !apiVisibility.IgnoreApi; 293actionModel.ApiExplorer.GroupName = apiGroupName.GroupName;