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