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