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

github.com/mono/reference-assemblies.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPranav K <prkrishn@hotmail.com>2020-04-04 00:52:00 +0300
committerPranav K <prkrishn@hotmail.com>2020-04-04 00:52:00 +0300
commitb0fd62e28cdb9d20c34743ae352cc6b5504a1178 (patch)
tree5c8e549597bfbe3da39938b32602e0e295052dd3
parent29e432cd90d71b104e6721c20439f2a866f18bd3 (diff)
Reduce ref assembly
-rw-r--r--src/monowasm/System.Net.Http.WebAssemblyHttpHandler.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/monowasm/System.Net.Http.WebAssemblyHttpHandler.cs b/src/monowasm/System.Net.Http.WebAssemblyHttpHandler.cs
index 6b866ed..df8d534 100644
--- a/src/monowasm/System.Net.Http.WebAssemblyHttpHandler.cs
+++ b/src/monowasm/System.Net.Http.WebAssemblyHttpHandler.cs
@@ -11,37 +11,9 @@
[assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName="")]
namespace System.Net.Http
{
- public enum RequestCache
- {
- Default = 0,
- NoStore = 1,
- Reload = 2,
- NoCache = 3,
- ForceCache = 4,
- OnlyIfCached = 5,
- }
- public enum RequestCredentials
- {
- Omit = 0,
- SameOrigin = 1,
- Include = 2,
- }
- public enum RequestMode
- {
- SameOrigin = 0,
- NoCors = 1,
- Cors = 2,
- Navigate = 3,
- }
public partial class WebAssemblyHttpHandler : System.Net.Http.HttpMessageHandler
{
public WebAssemblyHttpHandler() { }
- public string Integrity { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
- public System.Net.Http.RequestCache? RequestCache { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
- public System.Net.Http.RequestCredentials? RequestCredentials { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
- public System.Net.Http.RequestMode? RequestMode { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
- public bool StreamingEnabled { [System.Runtime.CompilerServices.CompilerGeneratedAttribute] get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute] set { } }
- [System.Diagnostics.DebuggerStepThroughAttribute]
protected override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
}
}