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

7.0-rc2_System.Runtime.InteropServices.JavaScript.md « Microsoft.NETCore.App « rc2 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2aaba97d91bd5aa6613083185dfdb8a5bca63534 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# System.Runtime.InteropServices.JavaScript

``` diff
 namespace System.Runtime.InteropServices.JavaScript {
     [CLSCompliantAttribute(false)]
     [EditorBrowsableAttribute(EditorBrowsableState.Never)]
     [SupportedOSPlatformAttribute("browser")]
     public struct JSMarshalerArgument {
-        public delegate void ArgumentToJSCallback<T>(ref JSMarshalerArgument arg, T value);
+        [EditorBrowsableAttribute(EditorBrowsableState.Never)]
+        public delegate void ArgumentToJSCallback<T>(ref JSMarshalerArgument arg, T value);
-        public delegate void ArgumentToManagedCallback<T>(ref JSMarshalerArgument arg, out T value);
+        [EditorBrowsableAttribute(EditorBrowsableState.Never)]
+        public delegate void ArgumentToManagedCallback<T>(ref JSMarshalerArgument arg, out T value);
     }
 }
```