|
1 | 1 | [assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")] |
2 | 2 | [assembly:System.Diagnostics.DebuggableAttribute(System.Diagnostics.DebuggableAttribute.DebuggingModes.Default | System.Diagnostics.DebuggableAttribute.DebuggingModes.DisableOptimizations | System.Diagnostics.DebuggableAttribute.DebuggingModes.EnableEditAndContinue | System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] |
3 | | -[assembly:System.Reflection.AssemblyCompanyAttribute("WebAssembly.Net.Http")] |
| 3 | +[assembly:System.Reflection.AssemblyCompanyAttribute("System.Net.Http.WebAssemblyHttpHandler")] |
4 | 4 | [assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] |
5 | 5 | [assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] |
6 | | -[assembly:System.Reflection.AssemblyProductAttribute("WebAssembly.Net.Http")] |
7 | | -[assembly:System.Reflection.AssemblyTitleAttribute("WebAssembly.Net.Http")] |
| 6 | +[assembly:System.Reflection.AssemblyProductAttribute("System.Net.Http.WebAssemblyHttpHandler")] |
| 7 | +[assembly:System.Reflection.AssemblyTitleAttribute("System.Net.Http.WebAssemblyHttpHandler")] |
8 | 8 | [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)] |
9 | 9 | [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")] |
10 | 10 | [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)] |
11 | 11 | [assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName="")] |
12 | | -namespace WebAssembly.Net.Http.HttpClient |
| 12 | +namespace System.Net.Http |
13 | 13 | { |
14 | | - public enum FetchCredentialsOption |
| 14 | + public partial class WebAssemblyHttpHandler : System.Net.Http.HttpMessageHandler |
15 | 15 | { |
16 | | - Include = 2, |
17 | | - Omit = 0, |
18 | | - SameOrigin = 1, |
19 | | - } |
20 | | - public enum RequestCache |
21 | | - { |
22 | | - Default = 0, |
23 | | - ForceCache = 4, |
24 | | - NoCache = 3, |
25 | | - NoStore = 1, |
26 | | - OnlyIfCached = 5, |
27 | | - Reload = 2, |
28 | | - } |
29 | | - public enum RequestMode |
30 | | - { |
31 | | - Cors = 2, |
32 | | - Navigate = 3, |
33 | | - NoCors = 1, |
34 | | - SameOrigin = 0, |
35 | | - } |
36 | | - public partial class WasmHttpMessageHandler : System.Net.Http.HttpMessageHandler |
37 | | - { |
38 | | - public WasmHttpMessageHandler() { } |
39 | | - public static WebAssembly.Net.Http.HttpClient.RequestCache Cache { get { throw null; } set { } } |
40 | | - public static WebAssembly.Net.Http.HttpClient.FetchCredentialsOption DefaultCredentials { get { throw null; } set { } } |
41 | | - public static WebAssembly.Net.Http.HttpClient.RequestMode Mode { get { throw null; } set { } } |
42 | | - public static bool StreamingEnabled { get { throw null; } set { } } |
43 | | - public static bool StreamingSupported { get { throw null; } } |
| 16 | + public WebAssemblyHttpHandler() { } |
44 | 17 | protected override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; } |
45 | 18 | } |
46 | 19 | } |
0 commit comments