7 writes to RelativePath
Microsoft.AspNetCore.Identity.UI (2)
IdentityBuilderUIExtensions.cs (2)
129
descriptor.
RelativePath
= descriptor.RelativePath.Replace("V4/", "");
141
descriptor.
RelativePath
= descriptor.RelativePath.Replace("V5/", "");
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,
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (2)
RuntimeViewCompiler.cs (2)
230
RelativePath
= precompiledView.RelativePath,
258
RelativePath
= normalizedPath,
15 references to RelativePath
Microsoft.AspNetCore.Identity.UI (3)
IdentityBuilderUIExtensions.cs (3)
129
descriptor.RelativePath = descriptor.
RelativePath
.Replace("V4/", "");
141
descriptor.RelativePath = descriptor.
RelativePath
.Replace("V5/", "");
156
private static bool IsIdentityUIView(CompiledViewDescriptor desc) => desc.
RelativePath
.StartsWith("/Areas/Identity", StringComparison.OrdinalIgnoreCase) &&
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.Razor.RuntimeCompilation (4)
RuntimeViewCompiler.cs (4)
69
Log.ViewCompilerLocatedCompiledView(_logger, precompiledView.
RelativePath
);
71
if (!_precompiledViews.ContainsKey(precompiledView.
RelativePath
))
75
_precompiledViews.Add(precompiledView.
RelativePath
, precompiledView);
230
RelativePath = precompiledView.
RelativePath
,
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);