File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/KristofferStrube.Blazor.FileAPI Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ public class FileReader : EventTarget, IJSCreatable<FileReader>
1717 protected readonly Lazy < Task < IJSObjectReference > > fileApiHelperTask ;
1818
1919 /// <inheritdoc/>
20- public static async Task < FileReader > CreateAsync ( IJSRuntime jSRuntime , IJSObjectReference jSReference )
20+ public static new async Task < FileReader > CreateAsync ( IJSRuntime jSRuntime , IJSObjectReference jSReference )
2121 {
2222 return await CreateAsync ( jSRuntime , jSReference , new ( ) ) ;
2323 }
2424
2525 /// <inheritdoc/>
26- public static async Task < FileReader > CreateAsync ( IJSRuntime jSRuntime , IJSObjectReference jSReference , CreationOptions options )
26+ public static new async Task < FileReader > CreateAsync ( IJSRuntime jSRuntime , IJSObjectReference jSReference , CreationOptions options )
2727 {
2828 IJSObjectReference helper = await jSRuntime . GetHelperAsync ( ) ;
2929 FileReader fileReader = new ( jSRuntime , jSReference , options ) ;
You can’t perform that action at this time.
0 commit comments