29 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,
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation.Test (13)
RuntimeViewCompilerTest.cs (13)
195
RelativePath
= path,
221
RelativePath
= path,
241
RelativePath
= path,
263
RelativePath
= path,
301
RelativePath
= path,
336
RelativePath
= path,
370
RelativePath
= path,
398
RelativePath
= path,
428
RelativePath
= path,
465
RelativePath
= path,
501
RelativePath
= path,
541
RelativePath
= path,
876
RelativePath
= path,
Microsoft.AspNetCore.Mvc.Razor.Test (9)
Compilation\DefaultRazorPageFactoryProviderTest.cs (3)
24
RelativePath
= path,
54
RelativePath
= relativePath,
80
RelativePath
= relativePath,
Compilation\DefaultViewCompilerTest.cs (5)
33
RelativePath
= path,
57
RelativePath
= path,
75
RelativePath
= path,
93
RelativePath
= path,
108
var hotReloaded = new CompiledViewDescriptor {
RelativePath
= path };
RazorViewEngineTest.cs (1)
2046
RelativePath
= path,
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);