2 writes to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (2)
ApplicationModels\PageRouteModel.cs (2)
34
ViewEnginePath
= viewEnginePath ?? throw new ArgumentNullException(nameof(viewEnginePath));
51
ViewEnginePath
= other.ViewEnginePath;
10 references to ViewEnginePath
Microsoft.AspNetCore.Mvc.RazorPages (10)
ApplicationModels\PageConventionCollection.cs (2)
298
string.Equals(model.
ViewEnginePath
, _path, StringComparison.OrdinalIgnoreCase))
326
PathBelongsToFolder(_folderPath, model.
ViewEnginePath
))
ApplicationModels\PageRouteModel.cs (4)
51
ViewEnginePath = other.
ViewEnginePath
;
69
/// e.g. the <see cref="
ViewEnginePath
"/> for the file /Pages/Catalog/Antiques.cshtml is <c>/Catalog/Antiques</c>
73
/// e.g. the <see cref="
ViewEnginePath
"/> for the file Areas/Identity/Pages/Manage/Accounts.cshtml, is <c>/Manage/Accounts</c>.
99
/// The value of <see cref="
ViewEnginePath
"/> is considered an implicit route value corresponding
ApplicationModels\PageRouteModelFactory.cs (1)
58
model.RouteValues.Add("page", model.
ViewEnginePath
);
Infrastructure\PageActionDescriptorProvider.cs (3)
102
DisplayName = $"Page: {model.
ViewEnginePath
}",
107
ViewEnginePath = model.
ViewEnginePath
,
120
descriptor.RouteValues.Add("page", model.
ViewEnginePath
);