1 // Licensed to the .NET Foundation under one or more agreements.
2 // The .NET Foundation licenses this file to you under the MIT license.
3 // See the LICENSE file in the project root for more information.
4 
5 [assembly:System.Reflection.AssemblyVersionAttribute("4.0.0.0")]
6 [assembly:System.CLSCompliantAttribute(true)]
7 [assembly:System.Diagnostics.DebuggableAttribute((System.Diagnostics.DebuggableAttribute.DebuggingModes)(2))]
8 [assembly:System.Reflection.AssemblyCompanyAttribute("Mono development team")]
9 [assembly:System.Reflection.AssemblyCopyrightAttribute("(c) Various Mono authors")]
10 [assembly:System.Reflection.AssemblyDefaultAliasAttribute("System.Net.Http.dll")]
11 [assembly:System.Reflection.AssemblyDescriptionAttribute("System.Net.Http.dll")]
12 [assembly:System.Reflection.AssemblyFileVersionAttribute("4.0.50524.0")]
13 [assembly:System.Reflection.AssemblyInformationalVersionAttribute("4.0.50524.0")]
14 [assembly:System.Reflection.AssemblyProductAttribute("Mono Common Language Infrastructure")]
15 [assembly:System.Reflection.AssemblyTitleAttribute("System.Net.Http.dll")]
16 [assembly:System.Resources.NeutralResourcesLanguageAttribute("en-US")]
17 [assembly:System.Resources.SatelliteContractVersionAttribute("4.0.0.0")]
18 [assembly:System.Runtime.CompilerServices.CompilationRelaxationsAttribute(8)]
19 [assembly:System.Runtime.CompilerServices.InternalsVisibleToAttribute("System.Net.Http.WebRequest, PublicKey=002400000480000094000000060200000024000052534131000400000100010007d1fa57c4aed9f0a32e84aa0faefd0de9e8fd6aec8f87fb03766c834c99921eb23be79ad9d5dcc1dd9ad236132102900b723cf980957fc4e177108fc607774f29e8320e92ea05ece4e821c0a5efe8f1645c4c0c93c1ab99285d622caa652c1dfad63d745d6f2de5f17e5eaf0fc4963d261c8a12436518206dc093344d5ad293")]
20 [assembly:System.Runtime.CompilerServices.RuntimeCompatibilityAttribute(WrapNonExceptionThrows=true)]
21 [assembly:System.Runtime.InteropServices.ComVisibleAttribute(false)]
22 namespace System.Net.Http
23 {
24     public partial class ByteArrayContent : System.Net.Http.HttpContent
25     {
ByteArrayContent(byte[] content)26         public ByteArrayContent(byte[] content) { }
ByteArrayContent(byte[] content, int offset, int count)27         public ByteArrayContent(byte[] content, int offset, int count) { }
CreateContentReadStreamAsync()28         protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw null; }
SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context)29         protected internal override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context) { throw null; }
TryComputeLength(out long length)30         protected internal override bool TryComputeLength(out long length) { length = default(long); throw null; }
31     }
32     public enum ClientCertificateOption
33     {
34         Automatic = 1,
35         Manual = 0,
36     }
37     public abstract partial class DelegatingHandler : System.Net.Http.HttpMessageHandler
38     {
DelegatingHandler()39         protected DelegatingHandler() { }
DelegatingHandler(System.Net.Http.HttpMessageHandler innerHandler)40         protected DelegatingHandler(System.Net.Http.HttpMessageHandler innerHandler) { }
41         public System.Net.Http.HttpMessageHandler InnerHandler { get { throw null; } set { } }
Dispose(bool disposing)42         protected override void Dispose(bool disposing) { }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)43         protected internal override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
44     }
45     public partial class FormUrlEncodedContent : System.Net.Http.ByteArrayContent
46     {
FormUrlEncodedContent(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> nameValueCollection)47         public FormUrlEncodedContent(System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, string>> nameValueCollection) : base (default(byte[])) { }
48     }
49     public partial class HttpClient : System.Net.Http.HttpMessageInvoker
50     {
HttpClient()51         public HttpClient() : base (default(System.Net.Http.HttpMessageHandler)) { }
HttpClient(System.Net.Http.HttpMessageHandler handler)52         public HttpClient(System.Net.Http.HttpMessageHandler handler) : base (default(System.Net.Http.HttpMessageHandler)) { }
HttpClient(System.Net.Http.HttpMessageHandler handler, bool disposeHandler)53         public HttpClient(System.Net.Http.HttpMessageHandler handler, bool disposeHandler) : base (default(System.Net.Http.HttpMessageHandler)) { }
54         public System.Uri BaseAddress { get { throw null; } set { } }
55         public System.Net.Http.Headers.HttpRequestHeaders DefaultRequestHeaders { get { throw null; } }
56         public long MaxResponseContentBufferSize { get { throw null; } set { } }
57         public System.TimeSpan Timeout { get { throw null; } set { } }
CancelPendingRequests()58         public void CancelPendingRequests() { }
DeleteAsync(string requestUri)59         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync(string requestUri) { throw null; }
DeleteAsync(string requestUri, System.Threading.CancellationToken cancellationToken)60         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync(string requestUri, System.Threading.CancellationToken cancellationToken) { throw null; }
DeleteAsync(System.Uri requestUri)61         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync(System.Uri requestUri) { throw null; }
DeleteAsync(System.Uri requestUri, System.Threading.CancellationToken cancellationToken)62         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> DeleteAsync(System.Uri requestUri, System.Threading.CancellationToken cancellationToken) { throw null; }
Dispose(bool disposing)63         protected override void Dispose(bool disposing) { }
GetAsync(string requestUri)64         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(string requestUri) { throw null; }
GetAsync(string requestUri, System.Net.Http.HttpCompletionOption completionOption)65         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(string requestUri, System.Net.Http.HttpCompletionOption completionOption) { throw null; }
GetAsync(string requestUri, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken)66         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(string requestUri, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw null; }
GetAsync(string requestUri, System.Threading.CancellationToken cancellationToken)67         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(string requestUri, System.Threading.CancellationToken cancellationToken) { throw null; }
GetAsync(System.Uri requestUri)68         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri requestUri) { throw null; }
GetAsync(System.Uri requestUri, System.Net.Http.HttpCompletionOption completionOption)69         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri requestUri, System.Net.Http.HttpCompletionOption completionOption) { throw null; }
GetAsync(System.Uri requestUri, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken)70         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri requestUri, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw null; }
GetAsync(System.Uri requestUri, System.Threading.CancellationToken cancellationToken)71         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> GetAsync(System.Uri requestUri, System.Threading.CancellationToken cancellationToken) { throw null; }
GetByteArrayAsync(string requestUri)72         public System.Threading.Tasks.Task<byte[]> GetByteArrayAsync(string requestUri) { throw null; }
GetByteArrayAsync(System.Uri requestUri)73         public System.Threading.Tasks.Task<byte[]> GetByteArrayAsync(System.Uri requestUri) { throw null; }
GetStreamAsync(string requestUri)74         public System.Threading.Tasks.Task<System.IO.Stream> GetStreamAsync(string requestUri) { throw null; }
GetStreamAsync(System.Uri requestUri)75         public System.Threading.Tasks.Task<System.IO.Stream> GetStreamAsync(System.Uri requestUri) { throw null; }
GetStringAsync(string requestUri)76         public System.Threading.Tasks.Task<string> GetStringAsync(string requestUri) { throw null; }
GetStringAsync(System.Uri requestUri)77         public System.Threading.Tasks.Task<string> GetStringAsync(System.Uri requestUri) { throw null; }
PostAsync(string requestUri, System.Net.Http.HttpContent content)78         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync(string requestUri, System.Net.Http.HttpContent content) { throw null; }
PostAsync(string requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken)79         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync(string requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken) { throw null; }
PostAsync(System.Uri requestUri, System.Net.Http.HttpContent content)80         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync(System.Uri requestUri, System.Net.Http.HttpContent content) { throw null; }
PostAsync(System.Uri requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken)81         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PostAsync(System.Uri requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken) { throw null; }
PutAsync(string requestUri, System.Net.Http.HttpContent content)82         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync(string requestUri, System.Net.Http.HttpContent content) { throw null; }
PutAsync(string requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken)83         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync(string requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken) { throw null; }
PutAsync(System.Uri requestUri, System.Net.Http.HttpContent content)84         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync(System.Uri requestUri, System.Net.Http.HttpContent content) { throw null; }
PutAsync(System.Uri requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken)85         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> PutAsync(System.Uri requestUri, System.Net.Http.HttpContent content, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.Net.Http.HttpRequestMessage request)86         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request) { throw null; }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption)87         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption) { throw null; }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken)88         public System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Net.Http.HttpCompletionOption completionOption, System.Threading.CancellationToken cancellationToken) { throw null; }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)89         public override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
90     }
91     public partial class HttpClientHandler : System.Net.Http.HttpMessageHandler
92     {
HttpClientHandler()93         public HttpClientHandler() { }
94         public bool AllowAutoRedirect { get { throw null; } set { } }
95         public System.Net.DecompressionMethods AutomaticDecompression { get { throw null; } set { } }
96         public bool CheckCertificateRevocationList { get { throw null; } set { } }
97         public System.Net.Http.ClientCertificateOption ClientCertificateOptions { get { throw null; } set { } }
98         public System.Security.Cryptography.X509Certificates.X509CertificateCollection ClientCertificates { get { throw null; } }
99         public System.Net.CookieContainer CookieContainer { get { throw null; } set { } }
100         public System.Net.ICredentials Credentials { get { throw null; } set { } }
101         public System.Net.ICredentials DefaultProxyCredentials { get { throw null; } set { } }
102         public int MaxAutomaticRedirections { get { throw null; } set { } }
103         public int MaxConnectionsPerServer { get { throw null; } set { } }
104         public long MaxRequestContentBufferSize { get { throw null; } set { } }
105         public int MaxResponseHeadersLength { get { throw null; } set { } }
106         public bool PreAuthenticate { get { throw null; } set { } }
107         public System.Collections.Generic.IDictionary<string, object> Properties { get { throw null; } }
108         public System.Net.IWebProxy Proxy { get { throw null; } set { } }
109         public System.Func<System.Net.Http.HttpRequestMessage, System.Security.Cryptography.X509Certificates.X509Certificate2, System.Security.Cryptography.X509Certificates.X509Chain, System.Net.Security.SslPolicyErrors, bool> ServerCertificateCustomValidationCallback { get { throw null; } set { } }
110         public System.Security.Authentication.SslProtocols SslProtocols { get { throw null; } set { } }
111         public virtual bool SupportsAutomaticDecompression { get { throw null; } }
112         public virtual bool SupportsProxy { get { throw null; } }
113         public virtual bool SupportsRedirectConfiguration { get { throw null; } }
114         public bool UseCookies { get { throw null; } set { } }
115         public bool UseDefaultCredentials { get { throw null; } set { } }
116         public bool UseProxy { get { throw null; } set { } }
Dispose(bool disposing)117         protected override void Dispose(bool disposing) { }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)118         protected internal override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
119     }
120     public enum HttpCompletionOption
121     {
122         ResponseContentRead = 0,
123         ResponseHeadersRead = 1,
124     }
125     public abstract partial class HttpContent : System.IDisposable
126     {
HttpContent()127         protected HttpContent() { }
128         public System.Net.Http.Headers.HttpContentHeaders Headers { get { throw null; } }
CopyToAsync(System.IO.Stream stream)129         public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream stream) { throw null; }
CopyToAsync(System.IO.Stream stream, System.Net.TransportContext context)130         public System.Threading.Tasks.Task CopyToAsync(System.IO.Stream stream, System.Net.TransportContext context) { throw null; }
CreateContentReadStreamAsync()131         protected virtual System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw null; }
Dispose()132         public void Dispose() { }
Dispose(bool disposing)133         protected virtual void Dispose(bool disposing) { }
LoadIntoBufferAsync()134         public System.Threading.Tasks.Task LoadIntoBufferAsync() { throw null; }
LoadIntoBufferAsync(long maxBufferSize)135         public System.Threading.Tasks.Task LoadIntoBufferAsync(long maxBufferSize) { throw null; }
ReadAsByteArrayAsync()136         public System.Threading.Tasks.Task<byte[]> ReadAsByteArrayAsync() { throw null; }
ReadAsStreamAsync()137         public System.Threading.Tasks.Task<System.IO.Stream> ReadAsStreamAsync() { throw null; }
ReadAsStringAsync()138         public System.Threading.Tasks.Task<string> ReadAsStringAsync() { throw null; }
SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context)139         protected internal abstract System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context);
TryComputeLength(out long length)140         protected internal abstract bool TryComputeLength(out long length);
141     }
142     public abstract partial class HttpMessageHandler : System.IDisposable
143     {
HttpMessageHandler()144         protected HttpMessageHandler() { }
Dispose()145         public void Dispose() { }
Dispose(bool disposing)146         protected virtual void Dispose(bool disposing) { }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)147         protected internal abstract System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken);
148     }
149     public partial class HttpMessageInvoker : System.IDisposable
150     {
HttpMessageInvoker(System.Net.Http.HttpMessageHandler handler)151         public HttpMessageInvoker(System.Net.Http.HttpMessageHandler handler) { }
HttpMessageInvoker(System.Net.Http.HttpMessageHandler handler, bool disposeHandler)152         public HttpMessageInvoker(System.Net.Http.HttpMessageHandler handler, bool disposeHandler) { }
Dispose()153         public void Dispose() { }
Dispose(bool disposing)154         protected virtual void Dispose(bool disposing) { }
SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)155         public virtual System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
156     }
157     public partial class HttpMethod : System.IEquatable<System.Net.Http.HttpMethod>
158     {
HttpMethod(string method)159         public HttpMethod(string method) { }
160         public static System.Net.Http.HttpMethod Delete { get { throw null; } }
161         public static System.Net.Http.HttpMethod Get { get { throw null; } }
162         public static System.Net.Http.HttpMethod Head { get { throw null; } }
163         public string Method { get { throw null; } }
164         public static System.Net.Http.HttpMethod Options { get { throw null; } }
165         public static System.Net.Http.HttpMethod Post { get { throw null; } }
166         public static System.Net.Http.HttpMethod Put { get { throw null; } }
167         public static System.Net.Http.HttpMethod Trace { get { throw null; } }
Equals(System.Net.Http.HttpMethod other)168         public bool Equals(System.Net.Http.HttpMethod other) { throw null; }
Equals(object obj)169         public override bool Equals(object obj) { throw null; }
GetHashCode()170         public override int GetHashCode() { throw null; }
operator ==(System.Net.Http.HttpMethod left, System.Net.Http.HttpMethod right)171         public static bool operator ==(System.Net.Http.HttpMethod left, System.Net.Http.HttpMethod right) { throw null; }
operator !=(System.Net.Http.HttpMethod left, System.Net.Http.HttpMethod right)172         public static bool operator !=(System.Net.Http.HttpMethod left, System.Net.Http.HttpMethod right) { throw null; }
ToString()173         public override string ToString() { throw null; }
174     }
175     [System.SerializableAttribute]
176     public partial class HttpRequestException : System.Exception
177     {
HttpRequestException()178         public HttpRequestException() { }
HttpRequestException(string message)179         public HttpRequestException(string message) { }
HttpRequestException(string message, System.Exception inner)180         public HttpRequestException(string message, System.Exception inner) { }
181     }
182     public partial class HttpRequestMessage : System.IDisposable
183     {
HttpRequestMessage()184         public HttpRequestMessage() { }
HttpRequestMessage(System.Net.Http.HttpMethod method, string requestUri)185         public HttpRequestMessage(System.Net.Http.HttpMethod method, string requestUri) { }
HttpRequestMessage(System.Net.Http.HttpMethod method, System.Uri requestUri)186         public HttpRequestMessage(System.Net.Http.HttpMethod method, System.Uri requestUri) { }
187         public System.Net.Http.HttpContent Content { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
188         public System.Net.Http.Headers.HttpRequestHeaders Headers { get { throw null; } }
189         public System.Net.Http.HttpMethod Method { get { throw null; } set { } }
190         public System.Collections.Generic.IDictionary<string, object> Properties { get { throw null; } }
191         public System.Uri RequestUri { get { throw null; } set { } }
192         public System.Version Version { get { throw null; } set { } }
Dispose()193         public void Dispose() { }
Dispose(bool disposing)194         protected virtual void Dispose(bool disposing) { }
ToString()195         public override string ToString() { throw null; }
196     }
197     public partial class HttpResponseMessage : System.IDisposable
198     {
HttpResponseMessage()199         public HttpResponseMessage() { }
HttpResponseMessage(System.Net.HttpStatusCode statusCode)200         public HttpResponseMessage(System.Net.HttpStatusCode statusCode) { }
201         public System.Net.Http.HttpContent Content { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
202         public System.Net.Http.Headers.HttpResponseHeaders Headers { get { throw null; } }
203         public bool IsSuccessStatusCode { get { throw null; } }
204         public string ReasonPhrase { get { throw null; } set { } }
205         public System.Net.Http.HttpRequestMessage RequestMessage { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
206         public System.Net.HttpStatusCode StatusCode { get { throw null; } set { } }
207         public System.Version Version { get { throw null; } set { } }
Dispose()208         public void Dispose() { }
Dispose(bool disposing)209         protected virtual void Dispose(bool disposing) { }
EnsureSuccessStatusCode()210         public System.Net.Http.HttpResponseMessage EnsureSuccessStatusCode() { throw null; }
ToString()211         public override string ToString() { throw null; }
212     }
213     public abstract partial class MessageProcessingHandler : System.Net.Http.DelegatingHandler
214     {
MessageProcessingHandler()215         protected MessageProcessingHandler() { }
MessageProcessingHandler(System.Net.Http.HttpMessageHandler innerHandler)216         protected MessageProcessingHandler(System.Net.Http.HttpMessageHandler innerHandler) { }
ProcessRequest(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)217         protected abstract System.Net.Http.HttpRequestMessage ProcessRequest(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken);
ProcessResponse(System.Net.Http.HttpResponseMessage response, System.Threading.CancellationToken cancellationToken)218         protected abstract System.Net.Http.HttpResponseMessage ProcessResponse(System.Net.Http.HttpResponseMessage response, System.Threading.CancellationToken cancellationToken);
SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken)219         protected internal sealed override System.Threading.Tasks.Task<System.Net.Http.HttpResponseMessage> SendAsync(System.Net.Http.HttpRequestMessage request, System.Threading.CancellationToken cancellationToken) { throw null; }
220     }
221     public partial class MultipartContent : System.Net.Http.HttpContent, System.Collections.Generic.IEnumerable<System.Net.Http.HttpContent>, System.Collections.IEnumerable
222     {
MultipartContent()223         public MultipartContent() { }
MultipartContent(string subtype)224         public MultipartContent(string subtype) { }
MultipartContent(string subtype, string boundary)225         public MultipartContent(string subtype, string boundary) { }
Add(System.Net.Http.HttpContent content)226         public virtual void Add(System.Net.Http.HttpContent content) { }
Dispose(bool disposing)227         protected override void Dispose(bool disposing) { }
GetEnumerator()228         public System.Collections.Generic.IEnumerator<System.Net.Http.HttpContent> GetEnumerator() { throw null; }
SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context)229         protected internal override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context) { throw null; }
System.Collections.IEnumerable.GetEnumerator()230         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
TryComputeLength(out long length)231         protected internal override bool TryComputeLength(out long length) { length = default(long); throw null; }
232     }
233     public partial class MultipartFormDataContent : System.Net.Http.MultipartContent
234     {
MultipartFormDataContent()235         public MultipartFormDataContent() { }
MultipartFormDataContent(string boundary)236         public MultipartFormDataContent(string boundary) { }
Add(System.Net.Http.HttpContent content)237         public override void Add(System.Net.Http.HttpContent content) { }
Add(System.Net.Http.HttpContent content, string name)238         public void Add(System.Net.Http.HttpContent content, string name) { }
Add(System.Net.Http.HttpContent content, string name, string fileName)239         public void Add(System.Net.Http.HttpContent content, string name, string fileName) { }
240     }
241     public partial class StreamContent : System.Net.Http.HttpContent
242     {
StreamContent(System.IO.Stream content)243         public StreamContent(System.IO.Stream content) { }
StreamContent(System.IO.Stream content, int bufferSize)244         public StreamContent(System.IO.Stream content, int bufferSize) { }
CreateContentReadStreamAsync()245         protected override System.Threading.Tasks.Task<System.IO.Stream> CreateContentReadStreamAsync() { throw null; }
Dispose(bool disposing)246         protected override void Dispose(bool disposing) { }
SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context)247         protected internal override System.Threading.Tasks.Task SerializeToStreamAsync(System.IO.Stream stream, System.Net.TransportContext context) { throw null; }
TryComputeLength(out long length)248         protected internal override bool TryComputeLength(out long length) { length = default(long); throw null; }
249     }
250     public partial class StringContent : System.Net.Http.ByteArrayContent
251     {
StringContent(string content)252         public StringContent(string content) : base (default(byte[])) { }
StringContent(string content, System.Text.Encoding encoding)253         public StringContent(string content, System.Text.Encoding encoding) : base (default(byte[])) { }
StringContent(string content, System.Text.Encoding encoding, string mediaType)254         public StringContent(string content, System.Text.Encoding encoding, string mediaType) : base (default(byte[])) { }
255     }
256 }
257 namespace System.Net.Http.Headers
258 {
259     public partial class AuthenticationHeaderValue : System.ICloneable
260     {
AuthenticationHeaderValue(string scheme)261         public AuthenticationHeaderValue(string scheme) { }
AuthenticationHeaderValue(string scheme, string parameter)262         public AuthenticationHeaderValue(string scheme, string parameter) { }
263         public string Parameter { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
264         public string Scheme { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)265         public override bool Equals(object obj) { throw null; }
GetHashCode()266         public override int GetHashCode() { throw null; }
Parse(string input)267         public static System.Net.Http.Headers.AuthenticationHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()268         object System.ICloneable.Clone() { throw null; }
ToString()269         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.AuthenticationHeaderValue parsedValue)270         public static bool TryParse(string input, out System.Net.Http.Headers.AuthenticationHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.AuthenticationHeaderValue); throw null; }
271     }
272     public partial class CacheControlHeaderValue : System.ICloneable
273     {
CacheControlHeaderValue()274         public CacheControlHeaderValue() { }
275         public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Extensions { get { throw null; } }
276         public System.Nullable<System.TimeSpan> MaxAge { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
277         public bool MaxStale { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
278         public System.Nullable<System.TimeSpan> MaxStaleLimit { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
279         public System.Nullable<System.TimeSpan> MinFresh { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
280         public bool MustRevalidate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
281         public bool NoCache { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
282         public System.Collections.Generic.ICollection<string> NoCacheHeaders { get { throw null; } }
283         public bool NoStore { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
284         public bool NoTransform { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
285         public bool OnlyIfCached { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
286         public bool Private { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
287         public System.Collections.Generic.ICollection<string> PrivateHeaders { get { throw null; } }
288         public bool ProxyRevalidate { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
289         public bool Public { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
290         public System.Nullable<System.TimeSpan> SharedMaxAge { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } [System.Runtime.CompilerServices.CompilerGeneratedAttribute]set { } }
Equals(object obj)291         public override bool Equals(object obj) { throw null; }
GetHashCode()292         public override int GetHashCode() { throw null; }
Parse(string input)293         public static System.Net.Http.Headers.CacheControlHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()294         object System.ICloneable.Clone() { throw null; }
ToString()295         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.CacheControlHeaderValue parsedValue)296         public static bool TryParse(string input, out System.Net.Http.Headers.CacheControlHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.CacheControlHeaderValue); throw null; }
297     }
298     public partial class ContentDispositionHeaderValue : System.ICloneable
299     {
ContentDispositionHeaderValue(System.Net.Http.Headers.ContentDispositionHeaderValue source)300         protected ContentDispositionHeaderValue(System.Net.Http.Headers.ContentDispositionHeaderValue source) { }
ContentDispositionHeaderValue(string dispositionType)301         public ContentDispositionHeaderValue(string dispositionType) { }
302         public System.Nullable<System.DateTimeOffset> CreationDate { get { throw null; } set { } }
303         public string DispositionType { get { throw null; } set { } }
304         public string FileName { get { throw null; } set { } }
305         public string FileNameStar { get { throw null; } set { } }
306         public System.Nullable<System.DateTimeOffset> ModificationDate { get { throw null; } set { } }
307         public string Name { get { throw null; } set { } }
308         public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw null; } }
309         public System.Nullable<System.DateTimeOffset> ReadDate { get { throw null; } set { } }
310         public System.Nullable<long> Size { get { throw null; } set { } }
Equals(object obj)311         public override bool Equals(object obj) { throw null; }
GetHashCode()312         public override int GetHashCode() { throw null; }
Parse(string input)313         public static System.Net.Http.Headers.ContentDispositionHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()314         object System.ICloneable.Clone() { throw null; }
ToString()315         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.ContentDispositionHeaderValue parsedValue)316         public static bool TryParse(string input, out System.Net.Http.Headers.ContentDispositionHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.ContentDispositionHeaderValue); throw null; }
317     }
318     public partial class ContentRangeHeaderValue : System.ICloneable
319     {
ContentRangeHeaderValue(long length)320         public ContentRangeHeaderValue(long length) { }
ContentRangeHeaderValue(long from, long to)321         public ContentRangeHeaderValue(long from, long to) { }
ContentRangeHeaderValue(long from, long to, long length)322         public ContentRangeHeaderValue(long from, long to, long length) { }
323         public System.Nullable<long> From { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
324         public bool HasLength { get { throw null; } }
325         public bool HasRange { get { throw null; } }
326         public System.Nullable<long> Length { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
327         public System.Nullable<long> To { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
328         public string Unit { get { throw null; } set { } }
Equals(object obj)329         public override bool Equals(object obj) { throw null; }
GetHashCode()330         public override int GetHashCode() { throw null; }
Parse(string input)331         public static System.Net.Http.Headers.ContentRangeHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()332         object System.ICloneable.Clone() { throw null; }
ToString()333         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.ContentRangeHeaderValue parsedValue)334         public static bool TryParse(string input, out System.Net.Http.Headers.ContentRangeHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.ContentRangeHeaderValue); throw null; }
335     }
336     public partial class EntityTagHeaderValue : System.ICloneable
337     {
EntityTagHeaderValue(string tag)338         public EntityTagHeaderValue(string tag) { }
EntityTagHeaderValue(string tag, bool isWeak)339         public EntityTagHeaderValue(string tag, bool isWeak) { }
340         public static System.Net.Http.Headers.EntityTagHeaderValue Any { get { throw null; } }
341         public bool IsWeak { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
342         public string Tag { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)343         public override bool Equals(object obj) { throw null; }
GetHashCode()344         public override int GetHashCode() { throw null; }
Parse(string input)345         public static System.Net.Http.Headers.EntityTagHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()346         object System.ICloneable.Clone() { throw null; }
ToString()347         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.EntityTagHeaderValue parsedValue)348         public static bool TryParse(string input, out System.Net.Http.Headers.EntityTagHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.EntityTagHeaderValue); throw null; }
349     }
350     public sealed partial class HttpContentHeaders : System.Net.Http.Headers.HttpHeaders
351     {
HttpContentHeaders()352         internal HttpContentHeaders() { }
353         public System.Collections.Generic.ICollection<string> Allow { get { throw null; } }
354         public System.Net.Http.Headers.ContentDispositionHeaderValue ContentDisposition { get { throw null; } set { } }
355         public System.Collections.Generic.ICollection<string> ContentEncoding { get { throw null; } }
356         public System.Collections.Generic.ICollection<string> ContentLanguage { get { throw null; } }
357         public System.Nullable<long> ContentLength { get { throw null; } set { } }
358         public System.Uri ContentLocation { get { throw null; } set { } }
359         public byte[] ContentMD5 { get { throw null; } set { } }
360         public System.Net.Http.Headers.ContentRangeHeaderValue ContentRange { get { throw null; } set { } }
361         public System.Net.Http.Headers.MediaTypeHeaderValue ContentType { get { throw null; } set { } }
362         public System.Nullable<System.DateTimeOffset> Expires { get { throw null; } set { } }
363         public System.Nullable<System.DateTimeOffset> LastModified { get { throw null; } set { } }
364     }
365     public abstract partial class HttpHeaders : System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string, System.Collections.Generic.IEnumerable<string>>>, System.Collections.IEnumerable
366     {
HttpHeaders()367         protected HttpHeaders() { }
Add(string name, System.Collections.Generic.IEnumerable<string> values)368         public void Add(string name, System.Collections.Generic.IEnumerable<string> values) { }
Add(string name, string value)369         public void Add(string name, string value) { }
Clear()370         public void Clear() { }
Contains(string name)371         public bool Contains(string name) { throw null; }
GetEnumerator()372         public System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<string, System.Collections.Generic.IEnumerable<string>>> GetEnumerator() { throw null; }
GetValues(string name)373         public System.Collections.Generic.IEnumerable<string> GetValues(string name) { throw null; }
Remove(string name)374         public bool Remove(string name) { throw null; }
System.Collections.IEnumerable.GetEnumerator()375         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToString()376         public override string ToString() { throw null; }
TryAddWithoutValidation(string name, System.Collections.Generic.IEnumerable<string> values)377         public bool TryAddWithoutValidation(string name, System.Collections.Generic.IEnumerable<string> values) { throw null; }
TryAddWithoutValidation(string name, string value)378         public bool TryAddWithoutValidation(string name, string value) { throw null; }
TryGetValues(string name, out System.Collections.Generic.IEnumerable<string> values)379         public bool TryGetValues(string name, out System.Collections.Generic.IEnumerable<string> values) { values = default(System.Collections.Generic.IEnumerable<string>); throw null; }
380     }
381     public sealed partial class HttpHeaderValueCollection<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable where T : class
382     {
HttpHeaderValueCollection()383         internal HttpHeaderValueCollection() { }
384         public int Count { get { throw null; } }
385         public bool IsReadOnly { get { throw null; } }
Add(T item)386         public void Add(T item) { }
Clear()387         public void Clear() { }
Contains(T item)388         public bool Contains(T item) { throw null; }
CopyTo(T[] array, int arrayIndex)389         public void CopyTo(T[] array, int arrayIndex) { }
GetEnumerator()390         public System.Collections.Generic.IEnumerator<T> GetEnumerator() { throw null; }
ParseAdd(string input)391         public void ParseAdd(string input) { }
Remove(T item)392         public bool Remove(T item) { throw null; }
System.Collections.IEnumerable.GetEnumerator()393         System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() { throw null; }
ToString()394         public override string ToString() { throw null; }
TryParseAdd(string input)395         public bool TryParseAdd(string input) { throw null; }
396     }
397     public sealed partial class HttpRequestHeaders : System.Net.Http.Headers.HttpHeaders
398     {
HttpRequestHeaders()399         internal HttpRequestHeaders() { }
400         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.MediaTypeWithQualityHeaderValue> Accept { get { throw null; } }
401         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.StringWithQualityHeaderValue> AcceptCharset { get { throw null; } }
402         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.StringWithQualityHeaderValue> AcceptEncoding { get { throw null; } }
403         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.StringWithQualityHeaderValue> AcceptLanguage { get { throw null; } }
404         public System.Net.Http.Headers.AuthenticationHeaderValue Authorization { get { throw null; } set { } }
405         public System.Net.Http.Headers.CacheControlHeaderValue CacheControl { get { throw null; } set { } }
406         public System.Net.Http.Headers.HttpHeaderValueCollection<string> Connection { get { throw null; } }
407         public System.Nullable<bool> ConnectionClose { get { throw null; } set { } }
408         public System.Nullable<System.DateTimeOffset> Date { get { throw null; } set { } }
409         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.NameValueWithParametersHeaderValue> Expect { get { throw null; } }
410         public System.Nullable<bool> ExpectContinue { get { throw null; } set { } }
411         public string From { get { throw null; } set { } }
412         public string Host { get { throw null; } set { } }
413         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.EntityTagHeaderValue> IfMatch { get { throw null; } }
414         public System.Nullable<System.DateTimeOffset> IfModifiedSince { get { throw null; } set { } }
415         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.EntityTagHeaderValue> IfNoneMatch { get { throw null; } }
416         public System.Net.Http.Headers.RangeConditionHeaderValue IfRange { get { throw null; } set { } }
417         public System.Nullable<System.DateTimeOffset> IfUnmodifiedSince { get { throw null; } set { } }
418         public System.Nullable<int> MaxForwards { get { throw null; } set { } }
419         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.NameValueHeaderValue> Pragma { get { throw null; } }
420         public System.Net.Http.Headers.AuthenticationHeaderValue ProxyAuthorization { get { throw null; } set { } }
421         public System.Net.Http.Headers.RangeHeaderValue Range { get { throw null; } set { } }
422         public System.Uri Referrer { get { throw null; } set { } }
423         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.TransferCodingWithQualityHeaderValue> TE { get { throw null; } }
424         public System.Net.Http.Headers.HttpHeaderValueCollection<string> Trailer { get { throw null; } }
425         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.TransferCodingHeaderValue> TransferEncoding { get { throw null; } }
426         public System.Nullable<bool> TransferEncodingChunked { get { throw null; } set { } }
427         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductHeaderValue> Upgrade { get { throw null; } }
428         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductInfoHeaderValue> UserAgent { get { throw null; } }
429         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ViaHeaderValue> Via { get { throw null; } }
430         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.WarningHeaderValue> Warning { get { throw null; } }
431     }
432     public sealed partial class HttpResponseHeaders : System.Net.Http.Headers.HttpHeaders
433     {
HttpResponseHeaders()434         internal HttpResponseHeaders() { }
435         public System.Net.Http.Headers.HttpHeaderValueCollection<string> AcceptRanges { get { throw null; } }
436         public System.Nullable<System.TimeSpan> Age { get { throw null; } set { } }
437         public System.Net.Http.Headers.CacheControlHeaderValue CacheControl { get { throw null; } set { } }
438         public System.Net.Http.Headers.HttpHeaderValueCollection<string> Connection { get { throw null; } }
439         public System.Nullable<bool> ConnectionClose { get { throw null; } set { } }
440         public System.Nullable<System.DateTimeOffset> Date { get { throw null; } set { } }
441         public System.Net.Http.Headers.EntityTagHeaderValue ETag { get { throw null; } set { } }
442         public System.Uri Location { get { throw null; } set { } }
443         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.NameValueHeaderValue> Pragma { get { throw null; } }
444         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.AuthenticationHeaderValue> ProxyAuthenticate { get { throw null; } }
445         public System.Net.Http.Headers.RetryConditionHeaderValue RetryAfter { get { throw null; } set { } }
446         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductInfoHeaderValue> Server { get { throw null; } }
447         public System.Net.Http.Headers.HttpHeaderValueCollection<string> Trailer { get { throw null; } }
448         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.TransferCodingHeaderValue> TransferEncoding { get { throw null; } }
449         public System.Nullable<bool> TransferEncodingChunked { get { throw null; } set { } }
450         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ProductHeaderValue> Upgrade { get { throw null; } }
451         public System.Net.Http.Headers.HttpHeaderValueCollection<string> Vary { get { throw null; } }
452         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.ViaHeaderValue> Via { get { throw null; } }
453         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.WarningHeaderValue> Warning { get { throw null; } }
454         public System.Net.Http.Headers.HttpHeaderValueCollection<System.Net.Http.Headers.AuthenticationHeaderValue> WwwAuthenticate { get { throw null; } }
455     }
456     public partial class MediaTypeHeaderValue : System.ICloneable
457     {
MediaTypeHeaderValue(System.Net.Http.Headers.MediaTypeHeaderValue source)458         protected MediaTypeHeaderValue(System.Net.Http.Headers.MediaTypeHeaderValue source) { }
MediaTypeHeaderValue(string mediaType)459         public MediaTypeHeaderValue(string mediaType) { }
460         public string CharSet { get { throw null; } set { } }
461         public string MediaType { get { throw null; } set { } }
462         public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw null; } }
Equals(object obj)463         public override bool Equals(object obj) { throw null; }
GetHashCode()464         public override int GetHashCode() { throw null; }
Parse(string input)465         public static System.Net.Http.Headers.MediaTypeHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()466         object System.ICloneable.Clone() { throw null; }
ToString()467         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.MediaTypeHeaderValue parsedValue)468         public static bool TryParse(string input, out System.Net.Http.Headers.MediaTypeHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.MediaTypeHeaderValue); throw null; }
469     }
470     public sealed partial class MediaTypeWithQualityHeaderValue : System.Net.Http.Headers.MediaTypeHeaderValue
471     {
MediaTypeWithQualityHeaderValue(string mediaType)472         public MediaTypeWithQualityHeaderValue(string mediaType) : base (default(string)) { }
MediaTypeWithQualityHeaderValue(string mediaType, double quality)473         public MediaTypeWithQualityHeaderValue(string mediaType, double quality) : base (default(string)) { }
474         public System.Nullable<double> Quality { get { throw null; } set { } }
Parse(string input)475         public static new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue Parse(string input) { throw null; }
TryParse(string input, out System.Net.Http.Headers.MediaTypeWithQualityHeaderValue parsedValue)476         public static bool TryParse(string input, out System.Net.Http.Headers.MediaTypeWithQualityHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.MediaTypeWithQualityHeaderValue); throw null; }
477     }
478     public partial class NameValueHeaderValue : System.ICloneable
479     {
NameValueHeaderValue(System.Net.Http.Headers.NameValueHeaderValue source)480         protected internal NameValueHeaderValue(System.Net.Http.Headers.NameValueHeaderValue source) { }
NameValueHeaderValue(string name)481         public NameValueHeaderValue(string name) { }
NameValueHeaderValue(string name, string value)482         public NameValueHeaderValue(string name, string value) { }
483         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
484         public string Value { get { throw null; } set { } }
Equals(object obj)485         public override bool Equals(object obj) { throw null; }
GetHashCode()486         public override int GetHashCode() { throw null; }
Parse(string input)487         public static System.Net.Http.Headers.NameValueHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()488         object System.ICloneable.Clone() { throw null; }
ToString()489         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.NameValueHeaderValue parsedValue)490         public static bool TryParse(string input, out System.Net.Http.Headers.NameValueHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.NameValueHeaderValue); throw null; }
491     }
492     public partial class NameValueWithParametersHeaderValue : System.Net.Http.Headers.NameValueHeaderValue, System.ICloneable
493     {
NameValueWithParametersHeaderValue(System.Net.Http.Headers.NameValueWithParametersHeaderValue source)494         protected NameValueWithParametersHeaderValue(System.Net.Http.Headers.NameValueWithParametersHeaderValue source) : base (default(string)) { }
NameValueWithParametersHeaderValue(string name)495         public NameValueWithParametersHeaderValue(string name) : base (default(string)) { }
NameValueWithParametersHeaderValue(string name, string value)496         public NameValueWithParametersHeaderValue(string name, string value) : base (default(string)) { }
497         public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw null; } }
Equals(object obj)498         public override bool Equals(object obj) { throw null; }
GetHashCode()499         public override int GetHashCode() { throw null; }
Parse(string input)500         public static new System.Net.Http.Headers.NameValueWithParametersHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()501         object System.ICloneable.Clone() { throw null; }
ToString()502         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.NameValueWithParametersHeaderValue parsedValue)503         public static bool TryParse(string input, out System.Net.Http.Headers.NameValueWithParametersHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.NameValueWithParametersHeaderValue); throw null; }
504     }
505     public partial class ProductHeaderValue : System.ICloneable
506     {
ProductHeaderValue(string name)507         public ProductHeaderValue(string name) { }
ProductHeaderValue(string name, string version)508         public ProductHeaderValue(string name, string version) { }
509         public string Name { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
510         public string Version { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)511         public override bool Equals(object obj) { throw null; }
GetHashCode()512         public override int GetHashCode() { throw null; }
Parse(string input)513         public static System.Net.Http.Headers.ProductHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()514         object System.ICloneable.Clone() { throw null; }
ToString()515         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.ProductHeaderValue parsedValue)516         public static bool TryParse(string input, out System.Net.Http.Headers.ProductHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.ProductHeaderValue); throw null; }
517     }
518     public partial class ProductInfoHeaderValue : System.ICloneable
519     {
ProductInfoHeaderValue(System.Net.Http.Headers.ProductHeaderValue product)520         public ProductInfoHeaderValue(System.Net.Http.Headers.ProductHeaderValue product) { }
ProductInfoHeaderValue(string comment)521         public ProductInfoHeaderValue(string comment) { }
ProductInfoHeaderValue(string productName, string productVersion)522         public ProductInfoHeaderValue(string productName, string productVersion) { }
523         public string Comment { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
524         public System.Net.Http.Headers.ProductHeaderValue Product { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)525         public override bool Equals(object obj) { throw null; }
GetHashCode()526         public override int GetHashCode() { throw null; }
Parse(string input)527         public static System.Net.Http.Headers.ProductInfoHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()528         object System.ICloneable.Clone() { throw null; }
ToString()529         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.ProductInfoHeaderValue parsedValue)530         public static bool TryParse(string input, out System.Net.Http.Headers.ProductInfoHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.ProductInfoHeaderValue); throw null; }
531     }
532     public partial class RangeConditionHeaderValue : System.ICloneable
533     {
RangeConditionHeaderValue(System.DateTimeOffset date)534         public RangeConditionHeaderValue(System.DateTimeOffset date) { }
RangeConditionHeaderValue(System.Net.Http.Headers.EntityTagHeaderValue entityTag)535         public RangeConditionHeaderValue(System.Net.Http.Headers.EntityTagHeaderValue entityTag) { }
RangeConditionHeaderValue(string entityTag)536         public RangeConditionHeaderValue(string entityTag) { }
537         public System.Nullable<System.DateTimeOffset> Date { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
538         public System.Net.Http.Headers.EntityTagHeaderValue EntityTag { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)539         public override bool Equals(object obj) { throw null; }
GetHashCode()540         public override int GetHashCode() { throw null; }
Parse(string input)541         public static System.Net.Http.Headers.RangeConditionHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()542         object System.ICloneable.Clone() { throw null; }
ToString()543         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.RangeConditionHeaderValue parsedValue)544         public static bool TryParse(string input, out System.Net.Http.Headers.RangeConditionHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.RangeConditionHeaderValue); throw null; }
545     }
546     public partial class RangeHeaderValue : System.ICloneable
547     {
RangeHeaderValue()548         public RangeHeaderValue() { }
RangeHeaderValue(System.Nullable<long> from, System.Nullable<long> to)549         public RangeHeaderValue(System.Nullable<long> from, System.Nullable<long> to) { }
550         public System.Collections.Generic.ICollection<System.Net.Http.Headers.RangeItemHeaderValue> Ranges { get { throw null; } }
551         public string Unit { get { throw null; } set { } }
Equals(object obj)552         public override bool Equals(object obj) { throw null; }
GetHashCode()553         public override int GetHashCode() { throw null; }
Parse(string input)554         public static System.Net.Http.Headers.RangeHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()555         object System.ICloneable.Clone() { throw null; }
ToString()556         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.RangeHeaderValue parsedValue)557         public static bool TryParse(string input, out System.Net.Http.Headers.RangeHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.RangeHeaderValue); throw null; }
558     }
559     public partial class RangeItemHeaderValue : System.ICloneable
560     {
RangeItemHeaderValue(System.Nullable<long> from, System.Nullable<long> to)561         public RangeItemHeaderValue(System.Nullable<long> from, System.Nullable<long> to) { }
562         public System.Nullable<long> From { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
563         public System.Nullable<long> To { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)564         public override bool Equals(object obj) { throw null; }
GetHashCode()565         public override int GetHashCode() { throw null; }
System.ICloneable.Clone()566         object System.ICloneable.Clone() { throw null; }
ToString()567         public override string ToString() { throw null; }
568     }
569     public partial class RetryConditionHeaderValue : System.ICloneable
570     {
RetryConditionHeaderValue(System.DateTimeOffset date)571         public RetryConditionHeaderValue(System.DateTimeOffset date) { }
RetryConditionHeaderValue(System.TimeSpan delta)572         public RetryConditionHeaderValue(System.TimeSpan delta) { }
573         public System.Nullable<System.DateTimeOffset> Date { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
574         public System.Nullable<System.TimeSpan> Delta { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)575         public override bool Equals(object obj) { throw null; }
GetHashCode()576         public override int GetHashCode() { throw null; }
Parse(string input)577         public static System.Net.Http.Headers.RetryConditionHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()578         object System.ICloneable.Clone() { throw null; }
ToString()579         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.RetryConditionHeaderValue parsedValue)580         public static bool TryParse(string input, out System.Net.Http.Headers.RetryConditionHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.RetryConditionHeaderValue); throw null; }
581     }
582     public partial class StringWithQualityHeaderValue : System.ICloneable
583     {
StringWithQualityHeaderValue(string value)584         public StringWithQualityHeaderValue(string value) { }
StringWithQualityHeaderValue(string value, double quality)585         public StringWithQualityHeaderValue(string value, double quality) { }
586         public System.Nullable<double> Quality { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
587         public string Value { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)588         public override bool Equals(object obj) { throw null; }
GetHashCode()589         public override int GetHashCode() { throw null; }
Parse(string input)590         public static System.Net.Http.Headers.StringWithQualityHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()591         object System.ICloneable.Clone() { throw null; }
ToString()592         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.StringWithQualityHeaderValue parsedValue)593         public static bool TryParse(string input, out System.Net.Http.Headers.StringWithQualityHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.StringWithQualityHeaderValue); throw null; }
594     }
595     public partial class TransferCodingHeaderValue : System.ICloneable
596     {
TransferCodingHeaderValue(System.Net.Http.Headers.TransferCodingHeaderValue source)597         protected TransferCodingHeaderValue(System.Net.Http.Headers.TransferCodingHeaderValue source) { }
TransferCodingHeaderValue(string value)598         public TransferCodingHeaderValue(string value) { }
599         public System.Collections.Generic.ICollection<System.Net.Http.Headers.NameValueHeaderValue> Parameters { get { throw null; } }
600         public string Value { get { throw null; } }
Equals(object obj)601         public override bool Equals(object obj) { throw null; }
GetHashCode()602         public override int GetHashCode() { throw null; }
Parse(string input)603         public static System.Net.Http.Headers.TransferCodingHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()604         object System.ICloneable.Clone() { throw null; }
ToString()605         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.TransferCodingHeaderValue parsedValue)606         public static bool TryParse(string input, out System.Net.Http.Headers.TransferCodingHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.TransferCodingHeaderValue); throw null; }
607     }
608     public sealed partial class TransferCodingWithQualityHeaderValue : System.Net.Http.Headers.TransferCodingHeaderValue
609     {
TransferCodingWithQualityHeaderValue(string value)610         public TransferCodingWithQualityHeaderValue(string value) : base (default(string)) { }
TransferCodingWithQualityHeaderValue(string value, double quality)611         public TransferCodingWithQualityHeaderValue(string value, double quality) : base (default(string)) { }
612         public System.Nullable<double> Quality { get { throw null; } set { } }
Parse(string input)613         public static new System.Net.Http.Headers.TransferCodingWithQualityHeaderValue Parse(string input) { throw null; }
TryParse(string input, out System.Net.Http.Headers.TransferCodingWithQualityHeaderValue parsedValue)614         public static bool TryParse(string input, out System.Net.Http.Headers.TransferCodingWithQualityHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.TransferCodingWithQualityHeaderValue); throw null; }
615     }
616     public partial class ViaHeaderValue : System.ICloneable
617     {
ViaHeaderValue(string protocolVersion, string receivedBy)618         public ViaHeaderValue(string protocolVersion, string receivedBy) { }
ViaHeaderValue(string protocolVersion, string receivedBy, string protocolName)619         public ViaHeaderValue(string protocolVersion, string receivedBy, string protocolName) { }
ViaHeaderValue(string protocolVersion, string receivedBy, string protocolName, string comment)620         public ViaHeaderValue(string protocolVersion, string receivedBy, string protocolName, string comment) { }
621         public string Comment { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
622         public string ProtocolName { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
623         public string ProtocolVersion { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
624         public string ReceivedBy { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)625         public override bool Equals(object obj) { throw null; }
GetHashCode()626         public override int GetHashCode() { throw null; }
Parse(string input)627         public static System.Net.Http.Headers.ViaHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()628         object System.ICloneable.Clone() { throw null; }
ToString()629         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.ViaHeaderValue parsedValue)630         public static bool TryParse(string input, out System.Net.Http.Headers.ViaHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.ViaHeaderValue); throw null; }
631     }
632     public partial class WarningHeaderValue : System.ICloneable
633     {
WarningHeaderValue(int code, string agent, string text)634         public WarningHeaderValue(int code, string agent, string text) { }
WarningHeaderValue(int code, string agent, string text, System.DateTimeOffset date)635         public WarningHeaderValue(int code, string agent, string text, System.DateTimeOffset date) { }
636         public string Agent { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
637         public int Code { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
638         public System.Nullable<System.DateTimeOffset> Date { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
639         public string Text { [System.Runtime.CompilerServices.CompilerGeneratedAttribute]get { throw null; } }
Equals(object obj)640         public override bool Equals(object obj) { throw null; }
GetHashCode()641         public override int GetHashCode() { throw null; }
Parse(string input)642         public static System.Net.Http.Headers.WarningHeaderValue Parse(string input) { throw null; }
System.ICloneable.Clone()643         object System.ICloneable.Clone() { throw null; }
ToString()644         public override string ToString() { throw null; }
TryParse(string input, out System.Net.Http.Headers.WarningHeaderValue parsedValue)645         public static bool TryParse(string input, out System.Net.Http.Headers.WarningHeaderValue parsedValue) { parsedValue = default(System.Net.Http.Headers.WarningHeaderValue); throw null; }
646     }
647 }
648