3 writes to RelativePath
Microsoft.AspNetCore.Mvc.Razor (3)
Compilation\CompiledViewDescriptor.cs (2)
30
RelativePath
= ViewPath.NormalizePath(item.Identifier);
65
RelativePath
= ViewPath.NormalizePath(item?.Identifier ?? attribute.Path);
Compilation\DefaultViewCompiler.cs (1)
113
RelativePath
= normalizedPath,
8 references to RelativePath
Microsoft.AspNetCore.Mvc.Razor (5)
Compilation\DefaultRazorPageFactoryProvider.cs (1)
49
var propertyBindExpression = Expression.Bind(pathProperty, Expression.Constant(viewDescriptor.
RelativePath
));
Compilation\DefaultViewCompiler.cs (3)
58
Log.ViewCompilerLocatedCompiledView(logger, compiledView.
RelativePath
);
60
if (!compiledViews.ContainsKey(compiledView.
RelativePath
))
64
compiledViews.TryAdd(compiledView.
RelativePath
, Task.FromResult(compiledView));
RazorViewEngine.cs (1)
414
GetViewStartPages(viewDescriptor!.
RelativePath
, expirationTokens) :
Microsoft.AspNetCore.Mvc.RazorPages (3)
ApplicationModels\CompiledPageRouteModelProvider.cs (2)
57
if (!visited.Add(viewDescriptor.
RelativePath
))
98
var relativePath = viewDescriptor.
RelativePath
;
Infrastructure\CompiledPageActionDescriptorProvider.cs (1)
63
lookup.TryAdd(ViewPath.NormalizePath(viewDescriptor.
RelativePath
), viewDescriptor);