Welcome to mirror list, hosted at ThFree Co, Russian Federation.

7.0-preview6_Microsoft.AspNetCore.Components.CompilerServices.md « Microsoft.AspNetCore.App « preview6 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9386e7de507419f265bf8ffd3f8d86d6bc5d5f76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Microsoft.AspNetCore.Components.CompilerServices

``` diff
 namespace Microsoft.AspNetCore.Components.CompilerServices {
     public static class RuntimeHelpers {
+        public static EventCallback<T> CreateInferredEventCallback<T>(object receiver, EventCallback<T> callback, T value);
+        public static Task InvokeAsynchronousDelegate(Action callback);
+        public static Task InvokeAsynchronousDelegate(Func<Task> callback);
+        public static void InvokeSynchronousDelegate(Action callback);
     }
 }
```