2 instantiations of UpdateHandler
Microsoft.AspNetCore.Components.WebAssembly (2)
.packages\microsoft.dotnet.hotreload.agent\10.0.100-preview.6.25303.102\contentFiles\cs\netstandard2.1\MetadataUpdateHandlerInvoker.cs (2)
226
return
new
(types =>
242
return
new
(update =>
14 references to UpdateHandler
Microsoft.AspNetCore.Components.WebAssembly (14)
.packages\microsoft.dotnet.hotreload.agent\10.0.100-preview.6.25303.102\contentFiles\cs\netstandard2.1\MetadataUpdateHandlerInvoker.cs (14)
38
IReadOnlyList<
UpdateHandler
<MetadataUpdateAction>> clearCacheHandlers,
39
IReadOnlyList<
UpdateHandler
<MetadataUpdateAction>> updateApplicationHandlers,
40
List<
UpdateHandler
<ContentUpdateAction>> updateContentHandlers)
44
foreach (
var
handler in clearCacheHandlers)
50
foreach (
var
handler in updateApplicationHandlers)
59
foreach (
var
handler in updateContentHandlers)
69
internal IEnumerable<
UpdateHandler
<MetadataUpdateAction>> ClearCacheHandlers => clearCacheHandlers;
74
internal IEnumerable<
UpdateHandler
<MetadataUpdateAction>> UpdateApplicationHandlers => updateApplicationHandlers;
79
internal IEnumerable<
UpdateHandler
<ContentUpdateAction>> UpdateContentHandlers => updateContentHandlers;
187
var clearCacheHandlers = new List<
UpdateHandler
<MetadataUpdateAction>>();
188
var applicationUpdateHandlers = new List<
UpdateHandler
<MetadataUpdateAction>>();
189
var contentUpdateHandlers = new List<
UpdateHandler
<ContentUpdateAction>>();
223
UpdateHandler
<MetadataUpdateAction> CreateMetadataUpdateAction(MethodInfo method)
239
UpdateHandler
<ContentUpdateAction> CreateContentUpdateAction(MethodInfo method)