5 instantiations of ApiExplorerModel
Microsoft.AspNetCore.Mvc.Core (5)
ApplicationModels\ActionModel.cs (2)
34ApiExplorer = new ApiExplorerModel(); 65ApiExplorer = new ApiExplorerModel(other.ApiExplorer);
ApplicationModels\ApplicationModel.cs (1)
20ApiExplorer = new ApiExplorerModel();
ApplicationModels\ControllerModel.cs (2)
34ApiExplorer = new ApiExplorerModel(); 65ApiExplorer = new ApiExplorerModel(other.ApiExplorer);
14 references to ApiExplorerModel
Microsoft.AspNetCore.Mvc.Core (12)
ApplicationModels\ActionModel.cs (2)
81/// Gets or sets the <see cref="ApiExplorerModel"/> for this action. 90public ApiExplorerModel ApiExplorer { get; set; }
ApplicationModels\ApiExplorerModel.cs (4)
12/// Creates a new <see cref="ApiExplorerModel"/>. 19/// Creates a new <see cref="ApiExplorerModel"/> with properties copied from <paramref name="other"/>. 21/// <param name="other">The <see cref="ApiExplorerModel"/> to copy.</param> 22public ApiExplorerModel(ApiExplorerModel other)
ApplicationModels\ApplicationModel.cs (3)
27/// Gets or sets the <see cref="ApiExplorerModel"/> for the application. 34/// If using <see cref="ApplicationModel.ApiExplorer"/> to set <see cref="ApiExplorerModel.IsVisible"/> to 37public ApiExplorerModel ApiExplorer { get; set; }
ApplicationModels\ControllerModel.cs (2)
77/// Gets or sets the <see cref="ApiExplorerModel"/> for this controller. 86public ApiExplorerModel ApiExplorer { get; set; }
ApplicationModels\IApiExplorerModel.cs (1)
14ApiExplorerModel ApiExplorer { get; set; }
Microsoft.AspNetCore.Mvc.Core.Test (2)
ApplicationModels\ActionModelTest.cs (1)
33var apiExplorer = action.ApiExplorer;
ApplicationModels\ControllerModelTest.cs (1)
32var apiExplorer = controller.ApiExplorer;