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

7.0-rc1_Microsoft.JSInterop.md « Microsoft.AspNetCore.App « rc1 « api-diff « preview « 7.0 « release-notes - github.com/dotnet/core.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f483b145ad3fd7cc59f28a527aafc6fb47a5a3c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Microsoft.JSInterop

``` diff
 namespace Microsoft.JSInterop {
     public interface IJSUnmarshalledObjectReference : IAsyncDisposable, IDisposable, IJSInProcessObjectReference, IJSObjectReference {
-        TResult InvokeUnmarshalled<T0, T1, T2, TResult>(string identifier, T0 arg0, T1 arg1, T2 arg2);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<T0, T1, T2, TResult>(string identifier, T0 arg0, T1 arg1, T2 arg2);
-        TResult InvokeUnmarshalled<T0, T1, TResult>(string identifier, T0 arg0, T1 arg1);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<T0, T1, TResult>(string identifier, T0 arg0, T1 arg1);
-        TResult InvokeUnmarshalled<T0, TResult>(string identifier, T0 arg0);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<T0, TResult>(string identifier, T0 arg0);
-        TResult InvokeUnmarshalled<TResult>(string identifier);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<TResult>(string identifier);
     }
     public interface IJSUnmarshalledRuntime {
-        TResult InvokeUnmarshalled<T0, T1, T2, TResult>(string identifier, T0 arg0, T1 arg1, T2 arg2);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<T0, T1, T2, TResult>(string identifier, T0 arg0, T1 arg1, T2 arg2);
-        TResult InvokeUnmarshalled<T0, T1, TResult>(string identifier, T0 arg0, T1 arg1);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<T0, T1, TResult>(string identifier, T0 arg0, T1 arg1);
-        TResult InvokeUnmarshalled<T0, TResult>(string identifier, T0 arg0);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<T0, TResult>(string identifier, T0 arg0);
-        TResult InvokeUnmarshalled<TResult>(string identifier);
+        [ObsoleteAttribute("This method is obsolete. Use JSImportAttribute instead.")]
+        TResult InvokeUnmarshalled<TResult>(string identifier);
     }
 }
```