This repository was archived by the owner on Oct 27, 2023. It is now read-only.
File tree 1 file changed +0
-28
lines changed
1 file changed +0
-28
lines changed Original file line number Diff line number Diff line change 11
11
[ assembly: System . Runtime . Versioning . TargetFrameworkAttribute ( ".NETStandard,Version=v2.0" , FrameworkDisplayName = "" ) ]
12
12
namespace System . Net . Http
13
13
{
14
- public enum RequestCache
15
- {
16
- Default = 0 ,
17
- NoStore = 1 ,
18
- Reload = 2 ,
19
- NoCache = 3 ,
20
- ForceCache = 4 ,
21
- OnlyIfCached = 5 ,
22
- }
23
- public enum RequestCredentials
24
- {
25
- Omit = 0 ,
26
- SameOrigin = 1 ,
27
- Include = 2 ,
28
- }
29
- public enum RequestMode
30
- {
31
- SameOrigin = 0 ,
32
- NoCors = 1 ,
33
- Cors = 2 ,
34
- Navigate = 3 ,
35
- }
36
14
public partial class WebAssemblyHttpHandler : System . Net . Http . HttpMessageHandler
37
15
{
38
16
public WebAssemblyHttpHandler ( ) { }
39
- public string Integrity { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
40
- public System . Net . Http . RequestCache ? RequestCache { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
41
- public System . Net . Http . RequestCredentials ? RequestCredentials { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
42
- public System . Net . Http . RequestMode ? RequestMode { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
43
- public bool StreamingEnabled { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
44
- [ System . Diagnostics . DebuggerStepThroughAttribute ]
45
17
protected override System . Threading . Tasks . Task < System . Net . Http . HttpResponseMessage > SendAsync ( System . Net . Http . HttpRequestMessage request , System . Threading . CancellationToken cancellationToken ) { throw null ; }
46
18
}
47
19
}
You can’t perform that action at this time.
0 commit comments