2 instantiations of UpdateHandler
Microsoft.AspNetCore.Components.WebAssembly (2)
.packages\microsoft.dotnet.hotreload.agent\10.0.100-preview.5.25258.39\contentFiles\cs\netstandard2.1\MetadataUpdateHandlerInvoker.cs (2)
224
return
new
(types =>
240
return
new
(update =>
14 references to UpdateHandler
Microsoft.AspNetCore.Components.WebAssembly (14)
.packages\microsoft.dotnet.hotreload.agent\10.0.100-preview.5.25258.39\contentFiles\cs\netstandard2.1\MetadataUpdateHandlerInvoker.cs (14)
36
IReadOnlyList<
UpdateHandler
<MetadataUpdateAction>> clearCacheHandlers,
37
IReadOnlyList<
UpdateHandler
<MetadataUpdateAction>> updateApplicationHandlers,
38
List<
UpdateHandler
<ContentUpdateAction>> updateContentHandlers)
42
foreach (
var
handler in clearCacheHandlers)
48
foreach (
var
handler in updateApplicationHandlers)
57
foreach (
var
handler in updateContentHandlers)
67
internal IEnumerable<
UpdateHandler
<MetadataUpdateAction>> ClearCacheHandlers => clearCacheHandlers;
72
internal IEnumerable<
UpdateHandler
<MetadataUpdateAction>> UpdateApplicationHandlers => updateApplicationHandlers;
77
internal IEnumerable<
UpdateHandler
<ContentUpdateAction>> UpdateContentHandlers => updateContentHandlers;
185
var clearCacheHandlers = new List<
UpdateHandler
<MetadataUpdateAction>>();
186
var applicationUpdateHandlers = new List<
UpdateHandler
<MetadataUpdateAction>>();
187
var contentUpdateHandlers = new List<
UpdateHandler
<ContentUpdateAction>>();
221
UpdateHandler
<MetadataUpdateAction> CreateMetadataUpdateAction(MethodInfo method)
237
UpdateHandler
<ContentUpdateAction> CreateContentUpdateAction(MethodInfo method)