5 instantiations of ApiExplorerModel
Microsoft.AspNetCore.Mvc.Core (5)
ApplicationModels\ActionModel.cs (2)
34
ApiExplorer = new
ApiExplorerModel
();
65
ApiExplorer = new
ApiExplorerModel
(other.ApiExplorer);
ApplicationModels\ApplicationModel.cs (1)
20
ApiExplorer = new
ApiExplorerModel
();
ApplicationModels\ControllerModel.cs (2)
34
ApiExplorer = new
ApiExplorerModel
();
65
ApiExplorer = 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.
90
public
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>
22
public 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
37
public
ApiExplorerModel
ApiExplorer { get; set; }
ApplicationModels\ControllerModel.cs (2)
77
/// Gets or sets the <see cref="
ApiExplorerModel
"/> for this controller.
86
public
ApiExplorerModel
ApiExplorer { get; set; }
ApplicationModels\IApiExplorerModel.cs (1)
14
ApiExplorerModel
ApiExplorer { get; set; }
Microsoft.AspNetCore.Mvc.Core.Test (2)
ApplicationModels\ActionModelTest.cs (1)
33
var
apiExplorer = action.ApiExplorer;
ApplicationModels\ControllerModelTest.cs (1)
32
var
apiExplorer = controller.ApiExplorer;