9 references to Handler
Microsoft.AspNetCore.Components (9)
Routing\Router.cs (9)
261
if (context.
Handler
!= null)
263
if (!typeof(IComponent).IsAssignableFrom(context.
Handler
))
265
throw new InvalidOperationException($"The type {context.
Handler
.FullName} " +
269
activityHandle = RecordDiagnostics(context.
Handler
.FullName, context.Entry.RoutePattern.RawText);
271
Log.NavigatingToComponent(_logger, context.
Handler
, locationPath, _baseUri);
274
context.
Handler
,
435
if (context.
Handler
is not null && typeof(IComponent).IsAssignableFrom(context.
Handler
))
437
return context.
Handler
;