Add API12
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API12 / build / tizen11.0 / ref / System.Net.Requests.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Net.Requests</name>
5   </assembly>
6   <members>
7     <member name="T:System.Net.AuthenticationManager">
8       <summary>Manages the authentication modules called during the client authentication process.</summary>
9     </member>
10     <member name="M:System.Net.AuthenticationManager.Authenticate(System.String,System.Net.WebRequest,System.Net.ICredentials)">
11       <summary>Calls each registered authentication module to find the first module that can respond to the authentication request.</summary>
12       <param name="challenge">The challenge returned by the Internet resource.</param>
13       <param name="request">The request that initiated the authentication challenge.</param>
14       <param name="credentials">The credentials associated with this request.</param>
15       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
16       <exception cref="T:System.ArgumentNullException">
17         <paramref name="challenge" /> is <see langword="null" />.  
18   
19  -or-  
20   
21  <paramref name="request" /> is <see langword="null" />.  
22   
23  -or-  
24   
25  <paramref name="credentials" /> is <see langword="null" />.</exception>
26       <returns>An instance of the <see cref="T:System.Net.Authorization" /> class containing the result of the authorization attempt. If there is no authentication module to respond to the challenge, this method returns <see langword="null" />.</returns>
27     </member>
28     <member name="M:System.Net.AuthenticationManager.PreAuthenticate(System.Net.WebRequest,System.Net.ICredentials)">
29       <summary>Preauthenticates a request.</summary>
30       <param name="request">A request to an internet resource.</param>
31       <param name="credentials">The credentials associated with the request.</param>
32       <exception cref="T:System.PlatformNotSupportedException">.NET Core and .NET 5+ only: In all cases.</exception>
33       <exception cref="T:System.ArgumentNullException">
34         <paramref name="request" /> is <see langword="null" />.</exception>
35       <returns>An instance of the <see cref="T:System.Net.Authorization" /> class if the request can be preauthenticated; otherwise, <see langword="null" />. If <paramref name="credentials" /> is <see langword="null" />, this method returns <see langword="null" />.</returns>
36     </member>
37     <member name="M:System.Net.AuthenticationManager.Register(System.Net.IAuthenticationModule)">
38       <summary>Registers an authentication module with the authentication manager.</summary>
39       <param name="authenticationModule">The <see cref="T:System.Net.IAuthenticationModule" /> to register with the authentication manager.</param>
40       <exception cref="T:System.ArgumentNullException">
41         <paramref name="authenticationModule" /> is <see langword="null" />.</exception>
42     </member>
43     <member name="M:System.Net.AuthenticationManager.Unregister(System.Net.IAuthenticationModule)">
44       <summary>Removes the specified authentication module from the list of registered modules.</summary>
45       <param name="authenticationModule">The <see cref="T:System.Net.IAuthenticationModule" /> to remove from the list of registered modules.</param>
46       <exception cref="T:System.ArgumentNullException">
47         <paramref name="authenticationModule" /> is <see langword="null" />.</exception>
48       <exception cref="T:System.InvalidOperationException">The specified <see cref="T:System.Net.IAuthenticationModule" /> is not registered.</exception>
49     </member>
50     <member name="M:System.Net.AuthenticationManager.Unregister(System.String)">
51       <summary>Removes authentication modules with the specified authentication scheme from the list of registered modules.</summary>
52       <param name="authenticationScheme">The authentication scheme of the module to remove.</param>
53       <exception cref="T:System.ArgumentNullException">
54         <paramref name="authenticationScheme" /> is <see langword="null" />.</exception>
55       <exception cref="T:System.InvalidOperationException">A module for this authentication scheme is not registered.</exception>
56     </member>
57     <member name="P:System.Net.AuthenticationManager.CredentialPolicy">
58       <summary>Gets or sets the credential policy to be used for resource requests made using the <see cref="T:System.Net.HttpWebRequest" /> class.</summary>
59       <returns>An object that implements the <see cref="T:System.Net.ICredentialPolicy" /> interface that determines whether credentials are sent with requests. The default value is <see langword="null" />.</returns>
60     </member>
61     <member name="P:System.Net.AuthenticationManager.CustomTargetNameDictionary">
62       <summary>Gets the dictionary that contains Service Principal Names (SPNs) that are used to identify hosts during Kerberos authentication for requests made using <see cref="T:System.Net.WebRequest" /> and its derived classes.</summary>
63       <returns>A writable <see cref="T:System.Collections.Specialized.StringDictionary" /> that contains the SPN values for keys composed of host information.</returns>
64     </member>
65     <member name="P:System.Net.AuthenticationManager.RegisteredModules">
66       <summary>Gets a list of authentication modules that are registered with the authentication manager.</summary>
67       <returns>An <see cref="T:System.Collections.IEnumerator" /> that enables the registered authentication modules to be read.</returns>
68     </member>
69     <member name="T:System.Net.Authorization">
70       <summary>Contains an authentication message for an Internet server.</summary>
71     </member>
72     <member name="M:System.Net.Authorization.#ctor(System.String)">
73       <summary>Creates a new instance of the <see cref="T:System.Net.Authorization" /> class with the specified authorization message.</summary>
74       <param name="token">The encrypted authorization message expected by the server.</param>
75     </member>
76     <member name="M:System.Net.Authorization.#ctor(System.String,System.Boolean)">
77       <summary>Creates a new instance of the <see cref="T:System.Net.Authorization" /> class with the specified authorization message and completion status.</summary>
78       <param name="token">The encrypted authorization message expected by the server.</param>
79       <param name="finished">The completion status of the authorization attempt. <see langword="true" /> if the authorization attempt is complete; otherwise, <see langword="false" />.</param>
80     </member>
81     <member name="M:System.Net.Authorization.#ctor(System.String,System.Boolean,System.String)">
82       <summary>Creates a new instance of the <see cref="T:System.Net.Authorization" /> class with the specified authorization message, completion status, and connection group identifier.</summary>
83       <param name="token">The encrypted authorization message expected by the server.</param>
84       <param name="finished">The completion status of the authorization attempt. <see langword="true" /> if the authorization attempt is complete; otherwise, <see langword="false" />.</param>
85       <param name="connectionGroupId">A unique identifier that can be used to create private client-server connections that are bound only to this authentication scheme.</param>
86     </member>
87     <member name="P:System.Net.Authorization.Complete">
88       <summary>Gets the completion status of the authorization.</summary>
89       <returns>
90         <see langword="true" /> if the authentication process is complete; otherwise, <see langword="false" />.</returns>
91     </member>
92     <member name="P:System.Net.Authorization.ConnectionGroupId">
93       <summary>Gets a unique identifier for user-specific connections.</summary>
94       <returns>A unique string that associates a connection with an authenticating entity.</returns>
95     </member>
96     <member name="P:System.Net.Authorization.Message">
97       <summary>Gets the message returned to the server in response to an authentication challenge.</summary>
98       <returns>The message that will be returned to the server in response to an authentication challenge.</returns>
99     </member>
100     <member name="P:System.Net.Authorization.MutuallyAuthenticated">
101       <summary>Gets or sets a <see cref="T:System.Boolean" /> value that indicates whether mutual authentication occurred.</summary>
102       <returns>
103         <see langword="true" /> if both client and server were authenticated; otherwise, <see langword="false" />.</returns>
104     </member>
105     <member name="P:System.Net.Authorization.ProtectionRealm">
106       <summary>Gets or sets the prefix for Uniform Resource Identifiers (URIs) that can be authenticated with the <see cref="P:System.Net.Authorization.Message" /> property.</summary>
107       <returns>An array of strings that contains URI prefixes.</returns>
108     </member>
109     <member name="T:System.Net.Cache.HttpCacheAgeControl">
110       <summary>Specifies the meaning of time values that control caching behavior for resources obtained using <see cref="T:System.Net.HttpWebRequest" /> objects.</summary>
111     </member>
112     <member name="F:System.Net.Cache.HttpCacheAgeControl.MaxAge">
113       <summary>Content can be taken from the cache until it is older than the age specified with this value.</summary>
114     </member>
115     <member name="F:System.Net.Cache.HttpCacheAgeControl.MaxAgeAndMaxStale">
116       <summary>
117         <see cref="P:System.Net.Cache.HttpRequestCachePolicy.MaxAge" /> and <see cref="P:System.Net.Cache.HttpRequestCachePolicy.MaxStale" />.</summary>
118     </member>
119     <member name="F:System.Net.Cache.HttpCacheAgeControl.MaxAgeAndMinFresh">
120       <summary>
121         <see cref="P:System.Net.Cache.HttpRequestCachePolicy.MaxAge" /> and <see cref="P:System.Net.Cache.HttpRequestCachePolicy.MinFresh" />.</summary>
122     </member>
123     <member name="F:System.Net.Cache.HttpCacheAgeControl.MaxStale">
124       <summary>Content can be taken from the cache after it has expired, until the time specified with this value elapses.</summary>
125     </member>
126     <member name="F:System.Net.Cache.HttpCacheAgeControl.MinFresh">
127       <summary>Content can be taken from the cache if the time remaining before expiration is greater than or equal to the time specified with this value.</summary>
128     </member>
129     <member name="F:System.Net.Cache.HttpCacheAgeControl.None">
130       <summary>For internal use only. The Framework will throw an <see cref="T:System.ArgumentException" /> if you try to use this member.</summary>
131     </member>
132     <member name="T:System.Net.Cache.HttpRequestCacheLevel">
133       <summary>Specifies caching behavior for resources obtained using the Hypertext Transfer protocol (HTTP).</summary>
134     </member>
135     <member name="F:System.Net.Cache.HttpRequestCacheLevel.BypassCache">
136       <summary>Satisfies a request by using the server. No entries are taken from caches, added to caches, or removed from caches between the client and server. No entries are taken from caches, added to caches, or removed from caches between the client and server. This is the default cache behavior specified in the machine configuration file that ships with the .NET Framework.</summary>
137     </member>
138     <member name="F:System.Net.Cache.HttpRequestCacheLevel.CacheIfAvailable">
139       <summary>Satisfies a request for a resource from the cache if the resource is available; otherwise, sends a request for a resource to the server. If the requested item is available in any cache between the client and the server, the request might be satisfied by the intermediate cache.</summary>
140     </member>
141     <member name="F:System.Net.Cache.HttpRequestCacheLevel.CacheOnly">
142       <summary>Satisfies a request using the locally cached resource; does not send a request for an item that is not in the cache. When this cache policy level is specified, a <see cref="T:System.Net.WebException" /> exception is thrown if the item is not in the client cache.</summary>
143     </member>
144     <member name="F:System.Net.Cache.HttpRequestCacheLevel.CacheOrNextCacheOnly">
145       <summary>Satisfies a request for a resource either from the local computer's cache or a remote cache on the local area network. If the request cannot be satisfied, a <see cref="T:System.Net.WebException" /> exception is thrown. In the HTTP caching protocol, this is achieved using the <see langword="only-if-cached" /> cache control directive.</summary>
146     </member>
147     <member name="F:System.Net.Cache.HttpRequestCacheLevel.Default">
148       <summary>Satisfies a request for a resource either by using the cached copy of the resource or by sending a request for the resource to the server. The action taken is determined by the current cache policy and the age of the content in the cache. This is the cache level that should be used by most applications.</summary>
149     </member>
150     <member name="F:System.Net.Cache.HttpRequestCacheLevel.NoCacheNoStore">
151       <summary>Never satisfies a request by using resources from the cache and does not cache resources. If the resource is present in the local cache, it is removed. This policy level indicates to intermediate caches that they should remove the resource. In the HTTP caching protocol, this is achieved using the no-cache cache control directive.</summary>
152     </member>
153     <member name="F:System.Net.Cache.HttpRequestCacheLevel.Refresh">
154       <summary>Satisfies a request by using the server or a cache other than the local cache. Before the request can be satisfied by an intermediate cache, that cache must revalidate its cached entry with the server. In the HTTP caching protocol, this is achieved using the max-age = 0 cache control directive and the no-cache <see langword="Pragma" /> header.</summary>
155     </member>
156     <member name="F:System.Net.Cache.HttpRequestCacheLevel.Reload">
157       <summary>Satisfies a request by using the server. The response might be saved in the cache. In the HTTP caching protocol, this is achieved using the no-cache cache control directive and the no-cache <see langword="Pragma" /> header.</summary>
158     </member>
159     <member name="F:System.Net.Cache.HttpRequestCacheLevel.Revalidate">
160       <summary>Compares the copy of the resource in the cache with the copy on the server. If the copy on the server is newer, it is used to satisfy the request and replaces the copy in the cache. If the copy in the cache is the same as the server copy, the cached copy is used. In the HTTP caching protocol, this is achieved using a conditional request.</summary>
161     </member>
162     <member name="T:System.Net.Cache.HttpRequestCachePolicy">
163       <summary>Defines an application's caching requirements for resources obtained by using <see cref="T:System.Net.HttpWebRequest" /> objects.</summary>
164     </member>
165     <member name="M:System.Net.Cache.HttpRequestCachePolicy.#ctor">
166       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> class.</summary>
167     </member>
168     <member name="M:System.Net.Cache.HttpRequestCachePolicy.#ctor(System.DateTime)">
169       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> class using the specified cache synchronization date.</summary>
170       <param name="cacheSyncDate">A <see cref="T:System.DateTime" /> object that specifies the time when resources stored in the cache must be revalidated.</param>
171     </member>
172     <member name="M:System.Net.Cache.HttpRequestCachePolicy.#ctor(System.Net.Cache.HttpCacheAgeControl,System.TimeSpan)">
173       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> class using the specified age control and time values.</summary>
174       <param name="cacheAgeControl">One of the following <see cref="T:System.Net.Cache.HttpCacheAgeControl" /> enumeration values: <see cref="F:System.Net.Cache.HttpCacheAgeControl.MaxAge" />, <see cref="F:System.Net.Cache.HttpCacheAgeControl.MaxStale" />, or <see cref="F:System.Net.Cache.HttpCacheAgeControl.MinFresh" />.</param>
175       <param name="ageOrFreshOrStale">A <see cref="T:System.TimeSpan" /> value that specifies an amount of time.</param>
176       <exception cref="T:System.ArgumentException">The value specified for the <paramref name="cacheAgeControl" /> parameter cannot be used with this constructor.</exception>
177     </member>
178     <member name="M:System.Net.Cache.HttpRequestCachePolicy.#ctor(System.Net.Cache.HttpCacheAgeControl,System.TimeSpan,System.TimeSpan)">
179       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> class using the specified maximum age, age control value, and time value.</summary>
180       <param name="cacheAgeControl">An <see cref="T:System.Net.Cache.HttpCacheAgeControl" /> value.</param>
181       <param name="maxAge">A <see cref="T:System.TimeSpan" /> value that specifies the maximum age for resources.</param>
182       <param name="freshOrStale">A <see cref="T:System.TimeSpan" /> value that specifies an amount of time.</param>
183       <exception cref="T:System.ArgumentException">The value specified for the <paramref name="cacheAgeControl" /> parameter is not valid.</exception>
184     </member>
185     <member name="M:System.Net.Cache.HttpRequestCachePolicy.#ctor(System.Net.Cache.HttpCacheAgeControl,System.TimeSpan,System.TimeSpan,System.DateTime)">
186       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> class using the specified maximum age, age control value, time value, and cache synchronization date.</summary>
187       <param name="cacheAgeControl">An <see cref="T:System.Net.Cache.HttpCacheAgeControl" /> value.</param>
188       <param name="maxAge">A <see cref="T:System.TimeSpan" /> value that specifies the maximum age for resources.</param>
189       <param name="freshOrStale">A <see cref="T:System.TimeSpan" /> value that specifies an amount of time.</param>
190       <param name="cacheSyncDate">A <see cref="T:System.DateTime" /> object that specifies the time when resources stored in the cache must be revalidated.</param>
191     </member>
192     <member name="M:System.Net.Cache.HttpRequestCachePolicy.#ctor(System.Net.Cache.HttpRequestCacheLevel)">
193       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> class using the specified cache policy.</summary>
194       <param name="level">An <see cref="T:System.Net.Cache.HttpRequestCacheLevel" /> value.</param>
195     </member>
196     <member name="M:System.Net.Cache.HttpRequestCachePolicy.ToString">
197       <summary>Returns a string representation of this instance.</summary>
198       <returns>A <see cref="T:System.String" /> value that contains the property values for this instance.</returns>
199     </member>
200     <member name="P:System.Net.Cache.HttpRequestCachePolicy.CacheSyncDate">
201       <summary>Gets the cache synchronization date for this instance.</summary>
202       <returns>A <see cref="T:System.DateTime" /> value set to the date specified when this instance was created. If no date was specified, this property's value is <see cref="F:System.DateTime.MinValue" />.</returns>
203     </member>
204     <member name="P:System.Net.Cache.HttpRequestCachePolicy.Level">
205       <summary>Gets the <see cref="T:System.Net.Cache.HttpRequestCacheLevel" /> value that was specified when this instance was created.</summary>
206       <returns>A <see cref="T:System.Net.Cache.HttpRequestCacheLevel" /> value that specifies the cache behavior for resources that were obtained using <see cref="T:System.Net.HttpWebRequest" /> objects.</returns>
207     </member>
208     <member name="P:System.Net.Cache.HttpRequestCachePolicy.MaxAge">
209       <summary>Gets the maximum age permitted for a resource returned from the cache.</summary>
210       <returns>A <see cref="T:System.TimeSpan" /> value that is set to the maximum age value specified when this instance was created. If no date was specified, this property's value is <see cref="F:System.DateTime.MinValue" />.</returns>
211     </member>
212     <member name="P:System.Net.Cache.HttpRequestCachePolicy.MaxStale">
213       <summary>Gets the maximum staleness value that is permitted for a resource returned from the cache.</summary>
214       <returns>A <see cref="T:System.TimeSpan" /> value that is set to the maximum staleness value specified when this instance was created. If no date was specified, this property's value is <see cref="F:System.DateTime.MinValue" />.</returns>
215     </member>
216     <member name="P:System.Net.Cache.HttpRequestCachePolicy.MinFresh">
217       <summary>Gets the minimum freshness that is permitted for a resource returned from the cache.</summary>
218       <returns>A <see cref="T:System.TimeSpan" /> value that specifies the minimum freshness specified when this instance was created. If no date was specified, this property's value is <see cref="F:System.DateTime.MinValue" />.</returns>
219     </member>
220     <member name="T:System.Net.FileWebRequest">
221       <summary>Provides a file system implementation of the <see cref="T:System.Net.WebRequest" /> class.</summary>
222     </member>
223     <member name="M:System.Net.FileWebRequest.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
224       <summary>Initializes a new instance of the <see cref="T:System.Net.FileWebRequest" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
225       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information that is required to serialize the new <see cref="T:System.Net.FileWebRequest" /> object.</param>
226       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.FileWebRequest" /> object.</param>
227     </member>
228     <member name="M:System.Net.FileWebRequest.Abort">
229       <summary>Cancels a request to an Internet resource.</summary>
230     </member>
231     <member name="M:System.Net.FileWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)">
232       <summary>Begins an asynchronous request for a <see cref="T:System.IO.Stream" /> object to use to write data.</summary>
233       <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
234       <param name="state">An object that contains state information for this request.</param>
235       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.FileWebRequest.Method" /> property is <c>GET</c> and the application writes to the stream.</exception>
236       <exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to <see cref="M:System.Net.FileWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />.</exception>
237       <exception cref="T:System.ApplicationException">No write stream is available.</exception>
238       <exception cref="T:System.Net.WebException">The <see cref="T:System.Net.FileWebRequest" /> was aborted.</exception>
239       <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request.</returns>
240     </member>
241     <member name="M:System.Net.FileWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)">
242       <summary>Begins an asynchronous request for a file system resource.</summary>
243       <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
244       <param name="state">An object that contains state information for this request.</param>
245       <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.FileWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
246       <exception cref="T:System.Net.WebException">The <see cref="T:System.Net.FileWebRequest" /> was aborted.</exception>
247       <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request.</returns>
248     </member>
249     <member name="M:System.Net.FileWebRequest.EndGetRequestStream(System.IAsyncResult)">
250       <summary>Ends an asynchronous request for a <see cref="T:System.IO.Stream" /> instance that the application uses to write data.</summary>
251       <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending request for a stream.</param>
252       <exception cref="T:System.ArgumentNullException">
253         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
254       <returns>A <see cref="T:System.IO.Stream" /> object that the application uses to write data.</returns>
255     </member>
256     <member name="M:System.Net.FileWebRequest.EndGetResponse(System.IAsyncResult)">
257       <summary>Ends an asynchronous request for a file system resource.</summary>
258       <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references the pending request for a response.</param>
259       <exception cref="T:System.ArgumentNullException">
260         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
261       <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the file system resource.</returns>
262     </member>
263     <member name="M:System.Net.FileWebRequest.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
264       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
265       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
266       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
267     </member>
268     <member name="M:System.Net.FileWebRequest.GetRequestStream">
269       <summary>Returns a <see cref="T:System.IO.Stream" /> object for writing data to the file system resource.</summary>
270       <exception cref="T:System.Net.WebException">The request times out.</exception>
271       <returns>A <see cref="T:System.IO.Stream" /> for writing data to the file system resource.</returns>
272     </member>
273     <member name="M:System.Net.FileWebRequest.GetRequestStreamAsync">
274       <summary>Returns a stream for writing data to the file system resource as an asynchronous operation.</summary>
275       <exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to <see cref="M:System.Net.FileWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />.
276
277 -or-
278
279 The stream already received a response previous to your request.</exception>
280       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.FileWebRequest.Method" /> property is GET or HEAD.</exception>
281       <exception cref="T:System.Net.WebException">The <see cref="T:System.Net.FileWebRequest" /> was aborted.</exception>
282       <returns>The task object representing the asynchronous operation.</returns>
283     </member>
284     <member name="M:System.Net.FileWebRequest.GetResponse">
285       <summary>Returns a response to a file system request.</summary>
286       <exception cref="T:System.Net.WebException">The request timed out.</exception>
287       <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the file system resource.</returns>
288     </member>
289     <member name="M:System.Net.FileWebRequest.GetResponseAsync">
290       <summary>Returns a response to a file system request as an asynchronous operation.</summary>
291       <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.FileWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
292       <exception cref="T:System.Net.WebException">The <see cref="T:System.Net.FileWebRequest" /> was aborted.</exception>
293       <returns>The task object representing the asynchronous operation.</returns>
294     </member>
295     <member name="M:System.Net.FileWebRequest.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
296       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object with the required data to serialize the <see cref="T:System.Net.FileWebRequest" />.</summary>
297       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that holds the serialized data for the <see cref="T:System.Net.FileWebRequest" />.</param>
298       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the destination of the serialized stream that is associated with the new <see cref="T:System.Net.FileWebRequest" />.</param>
299     </member>
300     <member name="P:System.Net.FileWebRequest.ConnectionGroupName">
301       <summary>Gets or sets the name of the connection group for the request. This property is reserved for future use.</summary>
302       <returns>The name of the connection group for the request.</returns>
303     </member>
304     <member name="P:System.Net.FileWebRequest.ContentLength">
305       <summary>Gets or sets the content length of the data being sent.</summary>
306       <exception cref="T:System.ArgumentException">
307         <see cref="P:System.Net.FileWebRequest.ContentLength" /> is less than 0.</exception>
308       <returns>The number of bytes of request data being sent.</returns>
309     </member>
310     <member name="P:System.Net.FileWebRequest.ContentType">
311       <summary>Gets or sets the content type of the data being sent. This property is reserved for future use.</summary>
312       <returns>The content type of the data being sent.</returns>
313     </member>
314     <member name="P:System.Net.FileWebRequest.Credentials">
315       <summary>Gets or sets the credentials that are associated with this request. This property is reserved for future use.</summary>
316       <returns>An <see cref="T:System.Net.ICredentials" /> that contains the authentication credentials that are associated with this request. The default is <see langword="null" />.</returns>
317     </member>
318     <member name="P:System.Net.FileWebRequest.Headers">
319       <summary>Gets a collection of the name/value pairs that are associated with the request. This property is reserved for future use.</summary>
320       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains header name/value pairs associated with this request.</returns>
321     </member>
322     <member name="P:System.Net.FileWebRequest.Method">
323       <summary>Gets or sets the protocol method used for the request. This property is reserved for future use.</summary>
324       <exception cref="T:System.ArgumentException">The method is invalid.  
325   
326 -or-
327   
328  The method is not supported.  
329   
330 -or-
331   
332  Multiple methods were specified.</exception>
333       <returns>The protocol method to use in this request.</returns>
334     </member>
335     <member name="P:System.Net.FileWebRequest.PreAuthenticate">
336       <summary>Gets or sets a value that indicates whether to preauthenticate a request. This property is reserved for future use.</summary>
337       <returns>
338         <see langword="true" /> to preauthenticate; otherwise, <see langword="false" />.</returns>
339     </member>
340     <member name="P:System.Net.FileWebRequest.Proxy">
341       <summary>Gets or sets the network proxy to use for this request. This property is reserved for future use.</summary>
342       <returns>An <see cref="T:System.Net.IWebProxy" /> that indicates the network proxy to use for this request.</returns>
343     </member>
344     <member name="P:System.Net.FileWebRequest.RequestUri">
345       <summary>Gets the Uniform Resource Identifier (URI) of the request.</summary>
346       <returns>A <see cref="T:System.Uri" /> that contains the URI of the request.</returns>
347     </member>
348     <member name="P:System.Net.FileWebRequest.Timeout">
349       <summary>Gets or sets the length of time until the request times out.</summary>
350       <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than or equal to zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
351       <returns>The time, in milliseconds, until the request times out, or the value <see cref="F:System.Threading.Timeout.Infinite" /> to indicate that the request does not time out.</returns>
352     </member>
353     <member name="P:System.Net.FileWebRequest.UseDefaultCredentials">
354       <summary>Always throws a <see cref="T:System.NotSupportedException" />.</summary>
355       <exception cref="T:System.NotSupportedException">Default credentials are not supported for file Uniform Resource Identifiers (URIs).</exception>
356       <returns>Always throws a <see cref="T:System.NotSupportedException" />.</returns>
357     </member>
358     <member name="T:System.Net.FileWebResponse">
359       <summary>Provides a file system implementation of the <see cref="T:System.Net.WebResponse" /> class.</summary>
360     </member>
361     <member name="M:System.Net.FileWebResponse.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
362       <summary>Initializes a new instance of the <see cref="T:System.Net.FileWebResponse" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
363       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance that contains the information required to serialize the new <see cref="T:System.Net.FileWebResponse" /> instance.</param>
364       <param name="streamingContext">An instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class that contains the source of the serialized stream associated with the new <see cref="T:System.Net.FileWebResponse" /> instance.</param>
365     </member>
366     <member name="M:System.Net.FileWebResponse.Close">
367       <summary>Closes the response stream.</summary>
368     </member>
369     <member name="M:System.Net.FileWebResponse.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
370       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
371       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
372       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
373     </member>
374     <member name="M:System.Net.FileWebResponse.GetResponseStream">
375       <summary>Returns the data stream from the file system resource.</summary>
376       <returns>A <see cref="T:System.IO.Stream" /> for reading data from the file system resource.</returns>
377     </member>
378     <member name="M:System.Net.FileWebResponse.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
379       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.FileWebResponse" />.</summary>
380       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> , which will hold the serialized data for the <see cref="T:System.Net.FileWebResponse" />.</param>
381       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> containing the destination of the serialized stream associated with the new <see cref="T:System.Net.FileWebResponse" />.</param>
382     </member>
383     <member name="P:System.Net.FileWebResponse.ContentLength">
384       <summary>Gets the length of the content in the file system resource.</summary>
385       <returns>The number of bytes returned from the file system resource.</returns>
386     </member>
387     <member name="P:System.Net.FileWebResponse.ContentType">
388       <summary>Gets the content type of the file system resource.</summary>
389       <returns>The value "binary/octet-stream".</returns>
390     </member>
391     <member name="P:System.Net.FileWebResponse.Headers">
392       <summary>Gets a collection of header name/value pairs associated with the response.</summary>
393       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains the header name/value pairs associated with the response.</returns>
394     </member>
395     <member name="P:System.Net.FileWebResponse.ResponseUri">
396       <summary>Gets the URI of the file system resource that provided the response.</summary>
397       <returns>A <see cref="T:System.Uri" /> that contains the URI of the file system resource that provided the response.</returns>
398     </member>
399     <member name="P:System.Net.FileWebResponse.SupportsHeaders">
400       <summary>Gets a value that indicates whether the <see cref="P:System.Net.FileWebResponse.Headers" /> property is supported by the <see cref="T:System.Net.FileWebResponse" /> instance.</summary>
401       <returns>
402         <see langword="true" /> if the <see cref="P:System.Net.FileWebResponse.Headers" /> property is supported by the <see cref="T:System.Net.FileWebResponse" /> instance; otherwise, <see langword="false" />.</returns>
403     </member>
404     <member name="T:System.Net.FtpStatusCode">
405       <summary>Specifies the status codes returned for a File Transfer Protocol (FTP) operation.</summary>
406     </member>
407     <member name="F:System.Net.FtpStatusCode.AccountNeeded">
408       <summary>Specifies that a user account on the server is required.</summary>
409     </member>
410     <member name="F:System.Net.FtpStatusCode.ActionAbortedLocalProcessingError">
411       <summary>Specifies that an error occurred that prevented the request action from completing.</summary>
412     </member>
413     <member name="F:System.Net.FtpStatusCode.ActionAbortedUnknownPageType">
414       <summary>Specifies that the requested action cannot be taken because the specified page type is unknown. Page types are described in RFC 959 Section 3.1.2.3.</summary>
415     </member>
416     <member name="F:System.Net.FtpStatusCode.ActionNotTakenFilenameNotAllowed">
417       <summary>Specifies that the requested action cannot be performed on the specified file.</summary>
418     </member>
419     <member name="F:System.Net.FtpStatusCode.ActionNotTakenFileUnavailable">
420       <summary>Specifies that the requested action cannot be performed on the specified file because the file is not available.</summary>
421     </member>
422     <member name="F:System.Net.FtpStatusCode.ActionNotTakenFileUnavailableOrBusy">
423       <summary>Specifies that the requested action cannot be performed on the specified file because the file is not available or is being used.</summary>
424     </member>
425     <member name="F:System.Net.FtpStatusCode.ActionNotTakenInsufficientSpace">
426       <summary>Specifies that the requested action cannot be performed because there is not enough space on the server.</summary>
427     </member>
428     <member name="F:System.Net.FtpStatusCode.ArgumentSyntaxError">
429       <summary>Specifies that one or more command arguments has a syntax error.</summary>
430     </member>
431     <member name="F:System.Net.FtpStatusCode.BadCommandSequence">
432       <summary>Specifies that the sequence of commands is not in the correct order.</summary>
433     </member>
434     <member name="F:System.Net.FtpStatusCode.CantOpenData">
435       <summary>Specifies that the data connection cannot be opened.</summary>
436     </member>
437     <member name="F:System.Net.FtpStatusCode.ClosingControl">
438       <summary>Specifies that the server is closing the control connection.</summary>
439     </member>
440     <member name="F:System.Net.FtpStatusCode.ClosingData">
441       <summary>Specifies that the server is closing the data connection and that the requested file action was successful.</summary>
442     </member>
443     <member name="F:System.Net.FtpStatusCode.CommandExtraneous">
444       <summary>Specifies that the command is not implemented by the server because it is not needed.</summary>
445     </member>
446     <member name="F:System.Net.FtpStatusCode.CommandNotImplemented">
447       <summary>Specifies that the command is not implemented by the FTP server.</summary>
448     </member>
449     <member name="F:System.Net.FtpStatusCode.CommandOK">
450       <summary>Specifies that the command completed successfully.</summary>
451     </member>
452     <member name="F:System.Net.FtpStatusCode.CommandSyntaxError">
453       <summary>Specifies that the command has a syntax error or is not a command recognized by the server.</summary>
454     </member>
455     <member name="F:System.Net.FtpStatusCode.ConnectionClosed">
456       <summary>Specifies that the connection has been closed.</summary>
457     </member>
458     <member name="F:System.Net.FtpStatusCode.DataAlreadyOpen">
459       <summary>Specifies that the data connection is already open and the requested transfer is starting.</summary>
460     </member>
461     <member name="F:System.Net.FtpStatusCode.DirectoryStatus">
462       <summary>Specifies the status of a directory.</summary>
463     </member>
464     <member name="F:System.Net.FtpStatusCode.EnteringPassive">
465       <summary>Specifies that the server is entering passive mode.</summary>
466     </member>
467     <member name="F:System.Net.FtpStatusCode.FileActionAborted">
468       <summary>Specifies that the requested action cannot be performed.</summary>
469     </member>
470     <member name="F:System.Net.FtpStatusCode.FileActionOK">
471       <summary>Specifies that the requested file action completed successfully.</summary>
472     </member>
473     <member name="F:System.Net.FtpStatusCode.FileCommandPending">
474       <summary>Specifies that the requested file action requires additional information.</summary>
475     </member>
476     <member name="F:System.Net.FtpStatusCode.FileStatus">
477       <summary>Specifies the status of a file.</summary>
478     </member>
479     <member name="F:System.Net.FtpStatusCode.LoggedInProceed">
480       <summary>Specifies that the user is logged in and can send commands.</summary>
481     </member>
482     <member name="F:System.Net.FtpStatusCode.NeedLoginAccount">
483       <summary>Specifies that the server requires a login account to be supplied.</summary>
484     </member>
485     <member name="F:System.Net.FtpStatusCode.NotLoggedIn">
486       <summary>Specifies that login information must be sent to the server.</summary>
487     </member>
488     <member name="F:System.Net.FtpStatusCode.OpeningData">
489       <summary>Specifies that the server is opening the data connection.</summary>
490     </member>
491     <member name="F:System.Net.FtpStatusCode.PathnameCreated">
492       <summary>Specifies that the requested path name was created.</summary>
493     </member>
494     <member name="F:System.Net.FtpStatusCode.RestartMarker">
495       <summary>Specifies that the response contains a restart marker reply. The text of the description that accompanies this status contains the user data stream marker and the server marker.</summary>
496     </member>
497     <member name="F:System.Net.FtpStatusCode.SendPasswordCommand">
498       <summary>Specifies that the server expects a password to be supplied.</summary>
499     </member>
500     <member name="F:System.Net.FtpStatusCode.SendUserCommand">
501       <summary>Specifies that the server is ready for a user login operation.</summary>
502     </member>
503     <member name="F:System.Net.FtpStatusCode.ServerWantsSecureSession">
504       <summary>Specifies that the server accepts the authentication mechanism specified by the client, and the exchange of security data is complete.</summary>
505     </member>
506     <member name="F:System.Net.FtpStatusCode.ServiceNotAvailable">
507       <summary>Specifies that the service is not available.</summary>
508     </member>
509     <member name="F:System.Net.FtpStatusCode.ServiceTemporarilyNotAvailable">
510       <summary>Specifies that the service is not available now; try your request later.</summary>
511     </member>
512     <member name="F:System.Net.FtpStatusCode.SystemType">
513       <summary>Specifies the system type name using the system names published in the Assigned Numbers document published by the Internet Assigned Numbers Authority.</summary>
514     </member>
515     <member name="F:System.Net.FtpStatusCode.Undefined">
516       <summary>Included for completeness, this value is never returned by servers.</summary>
517     </member>
518     <member name="T:System.Net.FtpWebRequest">
519       <summary>Implements a File Transfer Protocol (FTP) client.</summary>
520     </member>
521     <member name="M:System.Net.FtpWebRequest.Abort">
522       <summary>Terminates an asynchronous FTP operation.</summary>
523     </member>
524     <member name="M:System.Net.FtpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)">
525       <summary>Begins asynchronously opening a request's content stream for writing.</summary>
526       <param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that references the method to invoke when the operation is complete.</param>
527       <param name="state">A user-defined object that contains information about the operation. This object is passed to the <paramref name="callback" /> delegate when the operation completes.</param>
528       <exception cref="T:System.InvalidOperationException">A previous call to this method or <see cref="M:System.Net.FtpWebRequest.GetRequestStream" /> has not yet completed.</exception>
529       <exception cref="T:System.Net.WebException">A connection to the FTP server could not be established.</exception>
530       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.FtpWebRequest.Method" /> property is not set to <see cref="F:System.Net.WebRequestMethods.Ftp.UploadFile" />.</exception>
531       <returns>An <see cref="T:System.IAsyncResult" /> instance that indicates the status of the operation.</returns>
532     </member>
533     <member name="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)">
534       <summary>Begins sending a request and receiving a response from an FTP server asynchronously.</summary>
535       <param name="callback">An <see cref="T:System.AsyncCallback" /> delegate that references the method to invoke when the operation is complete.</param>
536       <param name="state">A user-defined object that contains information about the operation. This object is passed to the <paramref name="callback" /> delegate when the operation completes.</param>
537       <exception cref="T:System.InvalidOperationException">
538         <see cref="M:System.Net.FtpWebRequest.GetResponse" /> or <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> has already been called for this instance.</exception>
539       <returns>An <see cref="T:System.IAsyncResult" /> instance that indicates the status of the operation.</returns>
540     </member>
541     <member name="M:System.Net.FtpWebRequest.EndGetRequestStream(System.IAsyncResult)">
542       <summary>Ends a pending asynchronous operation started with <see cref="M:System.Net.FtpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />.</summary>
543       <param name="asyncResult">The <see cref="T:System.IAsyncResult" /> object that was returned when the operation started.</param>
544       <exception cref="T:System.ArgumentNullException">
545         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
546       <exception cref="T:System.ArgumentException">
547         <paramref name="asyncResult" /> was not obtained by calling <see cref="M:System.Net.FtpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />.</exception>
548       <exception cref="T:System.InvalidOperationException">This method was already called for the operation identified by <paramref name="asyncResult" />.</exception>
549       <returns>A writable <see cref="T:System.IO.Stream" /> instance associated with this instance.</returns>
550     </member>
551     <member name="M:System.Net.FtpWebRequest.EndGetResponse(System.IAsyncResult)">
552       <summary>Ends a pending asynchronous operation started with <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</summary>
553       <param name="asyncResult">The <see cref="T:System.IAsyncResult" /> that was returned when the operation started.</param>
554       <exception cref="T:System.ArgumentNullException">
555         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
556       <exception cref="T:System.ArgumentException">
557         <paramref name="asyncResult" /> was not obtained by calling <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
558       <exception cref="T:System.InvalidOperationException">This method was already called for the operation identified by <paramref name="asyncResult" />.</exception>
559       <exception cref="T:System.Net.WebException">An error occurred using an HTTP proxy.</exception>
560       <returns>A <see cref="T:System.Net.WebResponse" /> reference that contains an <see cref="T:System.Net.FtpWebResponse" /> instance. This object contains the FTP server's response to the request.</returns>
561     </member>
562     <member name="M:System.Net.FtpWebRequest.GetRequestStream">
563       <summary>Retrieves the stream used to upload data to an FTP server.</summary>
564       <exception cref="T:System.InvalidOperationException">
565         <see cref="M:System.Net.FtpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" /> has been called and has not completed.  
566   
567 -or-
568   
569  An HTTP proxy is enabled, and you attempted to use an FTP command other than <see cref="F:System.Net.WebRequestMethods.Ftp.DownloadFile" />, <see cref="F:System.Net.WebRequestMethods.Ftp.ListDirectory" />, or <see cref="F:System.Net.WebRequestMethods.Ftp.ListDirectoryDetails" />.</exception>
570       <exception cref="T:System.Net.WebException">A connection to the FTP server could not be established.</exception>
571       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.FtpWebRequest.Method" /> property is not set to <see cref="F:System.Net.WebRequestMethods.Ftp.UploadFile" /> or <see cref="F:System.Net.WebRequestMethods.Ftp.AppendFile" />.</exception>
572       <returns>A writable <see cref="T:System.IO.Stream" /> instance used to store data to be sent to the server by the current request.</returns>
573     </member>
574     <member name="M:System.Net.FtpWebRequest.GetResponse">
575       <summary>Returns the FTP server response.</summary>
576       <exception cref="T:System.InvalidOperationException">
577         <see cref="M:System.Net.FtpWebRequest.GetResponse" /> or <see cref="M:System.Net.FtpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> has already been called for this instance.  
578   
579 -or-
580   
581  An HTTP proxy is enabled, and you attempted to use an FTP command other than <see cref="F:System.Net.WebRequestMethods.Ftp.DownloadFile" />, <see cref="F:System.Net.WebRequestMethods.Ftp.ListDirectory" />, or <see cref="F:System.Net.WebRequestMethods.Ftp.ListDirectoryDetails" />.</exception>
582       <exception cref="T:System.Net.WebException">
583         <see cref="P:System.Net.FtpWebRequest.EnableSsl" /> is set to <see langword="true" />, but the server does not support this feature.  
584   
585 -or-
586   
587  A <see cref="P:System.Net.FtpWebRequest.Timeout" /> was specified and the timeout has expired.</exception>
588       <returns>A <see cref="T:System.Net.WebResponse" /> reference that contains an <see cref="T:System.Net.FtpWebResponse" /> instance. This object contains the FTP server's response to the request.</returns>
589     </member>
590     <member name="P:System.Net.FtpWebRequest.ClientCertificates">
591       <summary>Gets or sets the certificates used for establishing an encrypted connection to the FTP server.</summary>
592       <exception cref="T:System.ArgumentNullException">The value specified for a set operation is <see langword="null" />.</exception>
593       <returns>An <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> object that contains the client certificates.</returns>
594     </member>
595     <member name="P:System.Net.FtpWebRequest.ConnectionGroupName">
596       <summary>Gets or sets the name of the connection group that contains the service point used to send the current request.</summary>
597       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
598       <returns>A <see cref="T:System.String" /> value that contains a connection group name.</returns>
599     </member>
600     <member name="P:System.Net.FtpWebRequest.ContentLength">
601       <summary>Gets or sets a value that is ignored by the <see cref="T:System.Net.FtpWebRequest" /> class.</summary>
602       <returns>An <see cref="T:System.Int64" /> value that should be ignored.</returns>
603     </member>
604     <member name="P:System.Net.FtpWebRequest.ContentOffset">
605       <summary>Gets or sets a byte offset into the file being downloaded by this request.</summary>
606       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
607       <exception cref="T:System.ArgumentOutOfRangeException">The value specified for this property is less than zero.</exception>
608       <returns>An <see cref="T:System.Int64" /> instance that specifies the file offset, in bytes. The default value is zero.</returns>
609     </member>
610     <member name="P:System.Net.FtpWebRequest.ContentType">
611       <summary>Always throws a <see cref="T:System.NotSupportedException" />.</summary>
612       <exception cref="T:System.NotSupportedException">Content type information is not supported for FTP.</exception>
613       <returns>Always throws a <see cref="T:System.NotSupportedException" />.</returns>
614     </member>
615     <member name="P:System.Net.FtpWebRequest.Credentials">
616       <summary>Gets or sets the credentials used to communicate with the FTP server.</summary>
617       <exception cref="T:System.ArgumentNullException">The value specified for a set operation is <see langword="null" />.</exception>
618       <exception cref="T:System.ArgumentException">An <see cref="T:System.Net.ICredentials" /> of a type other than <see cref="T:System.Net.NetworkCredential" /> was specified for a set operation.</exception>
619       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
620       <returns>An <see cref="T:System.Net.ICredentials" /> instance; otherwise, <see langword="null" /> if the property has not been set.</returns>
621     </member>
622     <member name="P:System.Net.FtpWebRequest.DefaultCachePolicy">
623       <summary>Defines the default cache policy for all FTP requests.</summary>
624       <exception cref="T:System.ArgumentNullException">The caller tried to set this property to <see langword="null" />.</exception>
625       <returns>A <see cref="T:System.Net.Cache.RequestCachePolicy" /> that defines the cache policy for FTP requests.</returns>
626     </member>
627     <member name="P:System.Net.FtpWebRequest.EnableSsl">
628       <summary>Gets or sets a <see cref="T:System.Boolean" /> that specifies that an SSL connection should be used.</summary>
629       <exception cref="T:System.InvalidOperationException">The connection to the FTP server has already been established.</exception>
630       <returns>
631         <see langword="true" /> if control and data transmissions are encrypted; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
632     </member>
633     <member name="P:System.Net.FtpWebRequest.Headers">
634       <summary>Gets an empty <see cref="T:System.Net.WebHeaderCollection" /> object.</summary>
635       <returns>An empty <see cref="T:System.Net.WebHeaderCollection" /> object.</returns>
636     </member>
637     <member name="P:System.Net.FtpWebRequest.KeepAlive">
638       <summary>Gets or sets a <see cref="T:System.Boolean" /> value that specifies whether the control connection to the FTP server is closed after the request completes.</summary>
639       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
640       <returns>
641         <see langword="true" /> if the connection to the server should not be destroyed; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
642     </member>
643     <member name="P:System.Net.FtpWebRequest.Method">
644       <summary>Gets or sets the command to send to the FTP server.</summary>
645       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
646       <exception cref="T:System.ArgumentException">The method is invalid.  
647   
648 -or-
649   
650  The method is not supported.  
651   
652 -or-
653   
654  Multiple methods were specified.</exception>
655       <returns>A <see cref="T:System.String" /> value that contains the FTP command to send to the server. The default value is <see cref="F:System.Net.WebRequestMethods.Ftp.DownloadFile" />.</returns>
656     </member>
657     <member name="P:System.Net.FtpWebRequest.PreAuthenticate">
658       <summary>Always throws a <see cref="T:System.NotSupportedException" />.</summary>
659       <exception cref="T:System.NotSupportedException">Preauthentication is not supported for FTP.</exception>
660       <returns>Always throws a <see cref="T:System.NotSupportedException" />.</returns>
661     </member>
662     <member name="P:System.Net.FtpWebRequest.Proxy">
663       <summary>Gets or sets the proxy used to communicate with the FTP server.</summary>
664       <exception cref="T:System.ArgumentNullException">This property cannot be set to <see langword="null" />.</exception>
665       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
666       <returns>An <see cref="T:System.Net.IWebProxy" /> instance responsible for communicating with the FTP server. On .NET Core, its value is <see langword="null" />.</returns>
667     </member>
668     <member name="P:System.Net.FtpWebRequest.ReadWriteTimeout">
669       <summary>Gets or sets a time-out when reading from or writing to a stream.</summary>
670       <exception cref="T:System.InvalidOperationException">The request has already been sent.</exception>
671       <exception cref="T:System.ArgumentOutOfRangeException">The value specified for a set operation is less than or equal to zero and is not equal to <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
672       <returns>The number of milliseconds before the reading or writing times out. The default value is 300,000 milliseconds (5 minutes).</returns>
673     </member>
674     <member name="P:System.Net.FtpWebRequest.RenameTo">
675       <summary>Gets or sets the new name of a file being renamed.</summary>
676       <exception cref="T:System.ArgumentException">The value specified for a set operation is <see langword="null" /> or an empty string.</exception>
677       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
678       <returns>The new name of the file being renamed.</returns>
679     </member>
680     <member name="P:System.Net.FtpWebRequest.RequestUri">
681       <summary>Gets the URI requested by this instance.</summary>
682       <returns>A <see cref="T:System.Uri" /> instance that identifies a resource that is accessed using the File Transfer Protocol.</returns>
683     </member>
684     <member name="P:System.Net.FtpWebRequest.ServicePoint">
685       <summary>Gets the <see cref="T:System.Net.ServicePoint" /> object used to connect to the FTP server.</summary>
686       <returns>A <see cref="T:System.Net.ServicePoint" /> object that can be used to customize connection behavior.</returns>
687     </member>
688     <member name="P:System.Net.FtpWebRequest.Timeout">
689       <summary>Gets or sets the number of milliseconds to wait for a request.</summary>
690       <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
691       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
692       <returns>An <see cref="T:System.Int32" /> value that contains the number of milliseconds to wait before a request times out. The default value is <see cref="F:System.Threading.Timeout.Infinite" />.</returns>
693     </member>
694     <member name="P:System.Net.FtpWebRequest.UseBinary">
695       <summary>Gets or sets a <see cref="T:System.Boolean" /> value that specifies the data type for file transfers.</summary>
696       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
697       <returns>
698         <see langword="true" /> to indicate to the server that the data to be transferred is binary; <see langword="false" /> to indicate that the data is text. The default value is <see langword="true" />.</returns>
699     </member>
700     <member name="P:System.Net.FtpWebRequest.UseDefaultCredentials">
701       <summary>Always throws a <see cref="T:System.NotSupportedException" />.</summary>
702       <exception cref="T:System.NotSupportedException">Default credentials are not supported for FTP.</exception>
703       <returns>Always throws a <see cref="T:System.NotSupportedException" />.</returns>
704     </member>
705     <member name="P:System.Net.FtpWebRequest.UsePassive">
706       <summary>Gets or sets the behavior of a client application's data transfer process.</summary>
707       <exception cref="T:System.InvalidOperationException">A new value was specified for this property for a request that is already in progress.</exception>
708       <returns>
709         <see langword="false" /> if the client application's data transfer process listens for a connection on the data port; otherwise, <see langword="true" /> if the client should initiate a connection on the data port. The default value is <see langword="true" />.</returns>
710     </member>
711     <member name="T:System.Net.FtpWebResponse">
712       <summary>Encapsulates a File Transfer Protocol (FTP) server's response to a request.</summary>
713     </member>
714     <member name="M:System.Net.FtpWebResponse.Close">
715       <summary>Frees the resources held by the response.</summary>
716     </member>
717     <member name="M:System.Net.FtpWebResponse.GetResponseStream">
718       <summary>Retrieves the stream that contains response data sent from an FTP server.</summary>
719       <exception cref="T:System.InvalidOperationException">The response did not return a data stream.</exception>
720       <returns>A readable <see cref="T:System.IO.Stream" /> instance that contains data returned with the response; otherwise, <see cref="F:System.IO.Stream.Null" /> if no response data was returned by the server.</returns>
721     </member>
722     <member name="P:System.Net.FtpWebResponse.BannerMessage">
723       <summary>Gets the message sent by the FTP server when a connection is established prior to logon.</summary>
724       <returns>A <see cref="T:System.String" /> that contains the banner message sent by the server; otherwise, <see cref="F:System.String.Empty" /> if no message is sent.</returns>
725     </member>
726     <member name="P:System.Net.FtpWebResponse.ContentLength">
727       <summary>Gets the length of the data received from the FTP server.</summary>
728       <returns>An <see cref="T:System.Int64" /> value that contains the number of bytes of data received from the FTP server.</returns>
729     </member>
730     <member name="P:System.Net.FtpWebResponse.ExitMessage">
731       <summary>Gets the message sent by the server when the FTP session is ending.</summary>
732       <returns>A <see cref="T:System.String" /> that contains the exit message sent by the server; otherwise, <see cref="F:System.String.Empty" /> if no message is sent.</returns>
733     </member>
734     <member name="P:System.Net.FtpWebResponse.Headers">
735       <summary>Gets an empty <see cref="T:System.Net.WebHeaderCollection" /> object.</summary>
736       <returns>An empty <see cref="T:System.Net.WebHeaderCollection" /> object.</returns>
737     </member>
738     <member name="P:System.Net.FtpWebResponse.LastModified">
739       <summary>Gets the date and time that a file on an FTP server was last modified.</summary>
740       <returns>A <see cref="T:System.DateTime" /> that contains the last modified date and time for a file.</returns>
741     </member>
742     <member name="P:System.Net.FtpWebResponse.ResponseUri">
743       <summary>Gets the URI that sent the response to the request.</summary>
744       <returns>A <see cref="T:System.Uri" /> instance that identifies the resource associated with this response.</returns>
745     </member>
746     <member name="P:System.Net.FtpWebResponse.StatusCode">
747       <summary>Gets the most recent status code sent from the FTP server.</summary>
748       <returns>An <see cref="T:System.Net.FtpStatusCode" /> value that indicates the most recent status code returned with this response.</returns>
749     </member>
750     <member name="P:System.Net.FtpWebResponse.StatusDescription">
751       <summary>Gets text that describes a status code sent from the FTP server.</summary>
752       <returns>A <see cref="T:System.String" /> instance that contains the status code and message returned with this response.</returns>
753     </member>
754     <member name="P:System.Net.FtpWebResponse.SupportsHeaders">
755       <summary>Gets a value that indicates whether the <see cref="P:System.Net.FtpWebResponse.Headers" /> property is supported by the <see cref="T:System.Net.FtpWebResponse" /> instance.</summary>
756       <returns>Returns <see cref="T:System.Boolean" />.  
757   
758  <see langword="true" /> if the <see cref="P:System.Net.FtpWebResponse.Headers" /> property is supported by the <see cref="T:System.Net.FtpWebResponse" /> instance; otherwise, <see langword="false" />.</returns>
759     </member>
760     <member name="P:System.Net.FtpWebResponse.WelcomeMessage">
761       <summary>Gets the message sent by the FTP server when authentication is complete.</summary>
762       <returns>A <see cref="T:System.String" /> that contains the welcome message sent by the server; otherwise, <see cref="F:System.String.Empty" /> if no message is sent.</returns>
763     </member>
764     <member name="T:System.Net.GlobalProxySelection">
765       <summary>Contains a global default proxy instance for all HTTP requests.</summary>
766     </member>
767     <member name="M:System.Net.GlobalProxySelection.#ctor">
768       <summary>Initializes a new instance of the <see cref="T:System.Net.GlobalProxySelection" /> class.</summary>
769     </member>
770     <member name="M:System.Net.GlobalProxySelection.GetEmptyWebProxy">
771       <summary>Returns an empty proxy instance.</summary>
772       <returns>An <see cref="T:System.Net.IWebProxy" /> that contains no information.</returns>
773     </member>
774     <member name="P:System.Net.GlobalProxySelection.Select">
775       <summary>Gets or sets the global HTTP proxy.</summary>
776       <exception cref="T:System.ArgumentNullException">The value specified for a set operation was <see langword="null" />.</exception>
777       <exception cref="T:System.Security.SecurityException">The caller does not have permission for the requested operation.</exception>
778       <returns>An <see cref="T:System.Net.IWebProxy" /> that every call to <see cref="M:System.Net.HttpWebRequest.GetResponse" /> uses.</returns>
779     </member>
780     <member name="T:System.Net.HttpContinueDelegate">
781       <summary>Represents the method that notifies callers when a continue response is received by the client.</summary>
782       <param name="StatusCode">The numeric value of the HTTP status from the server.</param>
783       <param name="httpHeaders">The headers returned with the 100-continue response from the server.</param>
784     </member>
785     <member name="T:System.Net.HttpWebRequest">
786       <summary>Provides an HTTP-specific implementation of the <see cref="T:System.Net.WebRequest" /> class.</summary>
787     </member>
788     <member name="M:System.Net.HttpWebRequest.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
789       <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebRequest" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes. This constructor is obsolete.</summary>
790       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object that contains the information required to serialize the new <see cref="T:System.Net.HttpWebRequest" /> object.</param>
791       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> object that contains the source and destination of the serialized stream associated with the new <see cref="T:System.Net.HttpWebRequest" /> object.</param>
792     </member>
793     <member name="M:System.Net.HttpWebRequest.Abort">
794       <summary>Cancels a request to an Internet resource.</summary>
795     </member>
796     <member name="M:System.Net.HttpWebRequest.AddRange(System.Int32)">
797       <summary>Adds a byte range header to a request for a specific range from the beginning or end of the requested data.</summary>
798       <param name="range">The starting or ending point of the range.</param>
799       <exception cref="T:System.ArgumentException">
800         <paramref name="rangeSpecifier" /> is invalid.</exception>
801       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
802     </member>
803     <member name="M:System.Net.HttpWebRequest.AddRange(System.Int32,System.Int32)">
804       <summary>Adds a byte range header to the request for a specified range.</summary>
805       <param name="from">The position at which to start sending data.</param>
806       <param name="to">The position at which to stop sending data.</param>
807       <exception cref="T:System.ArgumentException">
808         <paramref name="rangeSpecifier" /> is invalid.</exception>
809       <exception cref="T:System.ArgumentOutOfRangeException">
810         <paramref name="from" /> is greater than <paramref name="to" />  
811   
812  -or-  
813   
814  <paramref name="from" /> or <paramref name="to" /> is less than 0.</exception>
815       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
816     </member>
817     <member name="M:System.Net.HttpWebRequest.AddRange(System.Int64)">
818       <summary>Adds a byte range header to a request for a specific range from the beginning or end of the requested data.</summary>
819       <param name="range">The starting or ending point of the range.</param>
820       <exception cref="T:System.ArgumentException">
821         <paramref name="rangeSpecifier" /> is invalid.</exception>
822       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
823     </member>
824     <member name="M:System.Net.HttpWebRequest.AddRange(System.Int64,System.Int64)">
825       <summary>Adds a byte range header to the request for a specified range.</summary>
826       <param name="from">The position at which to start sending data.</param>
827       <param name="to">The position at which to stop sending data.</param>
828       <exception cref="T:System.ArgumentException">
829         <paramref name="rangeSpecifier" /> is invalid.</exception>
830       <exception cref="T:System.ArgumentOutOfRangeException">
831         <paramref name="from" /> is greater than <paramref name="to" />  
832   
833  -or-  
834   
835  <paramref name="from" /> or <paramref name="to" /> is less than 0.</exception>
836       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
837     </member>
838     <member name="M:System.Net.HttpWebRequest.AddRange(System.String,System.Int32)">
839       <summary>Adds a Range header to a request for a specific range from the beginning or end of the requested data.</summary>
840       <param name="rangeSpecifier">The description of the range.</param>
841       <param name="range">The starting or ending point of the range.</param>
842       <exception cref="T:System.ArgumentNullException">
843         <paramref name="rangeSpecifier" /> is <see langword="null" />.</exception>
844       <exception cref="T:System.ArgumentException">
845         <paramref name="rangeSpecifier" /> is invalid.</exception>
846       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
847     </member>
848     <member name="M:System.Net.HttpWebRequest.AddRange(System.String,System.Int32,System.Int32)">
849       <summary>Adds a range header to a request for a specified range.</summary>
850       <param name="rangeSpecifier">The description of the range.</param>
851       <param name="from">The position at which to start sending data.</param>
852       <param name="to">The position at which to stop sending data.</param>
853       <exception cref="T:System.ArgumentNullException">
854         <paramref name="rangeSpecifier" /> is <see langword="null" />.</exception>
855       <exception cref="T:System.ArgumentOutOfRangeException">
856         <paramref name="from" /> is greater than <paramref name="to" />  
857   
858  -or-  
859   
860  <paramref name="from" /> or <paramref name="to" /> is less than 0.</exception>
861       <exception cref="T:System.ArgumentException">
862         <paramref name="rangeSpecifier" /> is invalid.</exception>
863       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
864     </member>
865     <member name="M:System.Net.HttpWebRequest.AddRange(System.String,System.Int64)">
866       <summary>Adds a Range header to a request for a specific range from the beginning or end of the requested data.</summary>
867       <param name="rangeSpecifier">The description of the range.</param>
868       <param name="range">The starting or ending point of the range.</param>
869       <exception cref="T:System.ArgumentNullException">
870         <paramref name="rangeSpecifier" /> is <see langword="null" />.</exception>
871       <exception cref="T:System.ArgumentException">
872         <paramref name="rangeSpecifier" /> is invalid.</exception>
873       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
874     </member>
875     <member name="M:System.Net.HttpWebRequest.AddRange(System.String,System.Int64,System.Int64)">
876       <summary>Adds a range header to a request for a specified range.</summary>
877       <param name="rangeSpecifier">The description of the range.</param>
878       <param name="from">The position at which to start sending data.</param>
879       <param name="to">The position at which to stop sending data.</param>
880       <exception cref="T:System.ArgumentNullException">
881         <paramref name="rangeSpecifier" /> is <see langword="null" />.</exception>
882       <exception cref="T:System.ArgumentOutOfRangeException">
883         <paramref name="from" /> is greater than <paramref name="to" />  
884   
885  -or-  
886   
887  <paramref name="from" /> or <paramref name="to" /> is less than 0.</exception>
888       <exception cref="T:System.ArgumentException">
889         <paramref name="rangeSpecifier" /> is invalid.</exception>
890       <exception cref="T:System.InvalidOperationException">The range header could not be added.</exception>
891     </member>
892     <member name="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)">
893       <summary>Begins an asynchronous request for a <see cref="T:System.IO.Stream" /> object to use to write data.</summary>
894       <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
895       <param name="state">The state object for this request.</param>
896       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.HttpWebRequest.Method" /> property is GET or HEAD.  
897   
898  -or-  
899   
900  <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />, and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.</exception>
901       <exception cref="T:System.InvalidOperationException">The stream is being used by a previous call to <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />  
902   
903  -or-  
904   
905  <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.  
906   
907  -or-  
908   
909  The thread pool is running out of threads.</exception>
910       <exception cref="T:System.NotSupportedException">The request cache validator indicated that the response for this request can be served from the cache; however, requests that write data must not use the cache. This exception can occur if you are using a custom cache validator that is incorrectly implemented.</exception>
911       <exception cref="T:System.Net.WebException">
912         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.</exception>
913       <exception cref="T:System.ObjectDisposedException">In a .NET Compact Framework application, a request stream with zero content length was not obtained and closed correctly. For more information about handling zero content length requests, see Network Programming in the .NET Compact Framework.</exception>
914       <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request.</returns>
915     </member>
916     <member name="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)">
917       <summary>Begins an asynchronous request to an Internet resource.</summary>
918       <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
919       <param name="state">The state object for this request.</param>
920       <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />  
921   
922  -or-  
923   
924  <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.  
925   
926  -or-  
927   
928  The thread pool is running out of threads.</exception>
929       <exception cref="T:System.Net.ProtocolViolationException">
930         <see cref="P:System.Net.HttpWebRequest.Method" /> is GET or HEAD, and either <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater than zero or <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="true" />.  
931   
932  -or-  
933   
934  <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, and either <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" /> and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.  
935   
936  -or-  
937   
938  The <see cref="T:System.Net.HttpWebRequest" /> has an entity body but the <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method is called without calling the <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" /> method.  
939   
940  -or-  
941   
942  The <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater than zero, but the application does not write all of the promised data.</exception>
943       <exception cref="T:System.Net.WebException">
944         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.</exception>
945       <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request for a response.</returns>
946     </member>
947     <member name="M:System.Net.HttpWebRequest.EndGetRequestStream(System.IAsyncResult)">
948       <summary>Ends an asynchronous request for a <see cref="T:System.IO.Stream" /> object to use to write data.</summary>
949       <param name="asyncResult">The pending request for a stream.</param>
950       <exception cref="T:System.ArgumentNullException">
951         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
952       <exception cref="T:System.IO.IOException">The request did not complete, and no stream is available.</exception>
953       <exception cref="T:System.ArgumentException">
954         <paramref name="asyncResult" /> was not returned by the current instance from a call to <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />.</exception>
955       <exception cref="T:System.InvalidOperationException">This method was called previously using <paramref name="asyncResult" />.</exception>
956       <exception cref="T:System.Net.WebException">
957         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.  
958   
959  -or-  
960   
961  An error occurred while processing the request.</exception>
962       <returns>A <see cref="T:System.IO.Stream" /> to use to write request data.</returns>
963     </member>
964     <member name="M:System.Net.HttpWebRequest.EndGetRequestStream(System.IAsyncResult,System.Net.TransportContext@)">
965       <summary>Ends an asynchronous request for a <see cref="T:System.IO.Stream" /> object to use to write data and outputs the <see cref="T:System.Net.TransportContext" /> associated with the stream.</summary>
966       <param name="asyncResult">The pending request for a stream.</param>
967       <param name="context">The <see cref="T:System.Net.TransportContext" /> for the <see cref="T:System.IO.Stream" />.</param>
968       <exception cref="T:System.ArgumentException">
969         <paramref name="asyncResult" /> was not returned by the current instance from a call to <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />.</exception>
970       <exception cref="T:System.ArgumentNullException">
971         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
972       <exception cref="T:System.InvalidOperationException">This method was called previously using <paramref name="asyncResult" />.</exception>
973       <exception cref="T:System.IO.IOException">The request did not complete, and no stream is available.</exception>
974       <exception cref="T:System.Net.WebException">
975         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.  
976   
977  -or-  
978   
979  An error occurred while processing the request.</exception>
980       <returns>A <see cref="T:System.IO.Stream" /> to use to write request data.</returns>
981     </member>
982     <member name="M:System.Net.HttpWebRequest.EndGetResponse(System.IAsyncResult)">
983       <summary>Ends an asynchronous request to an Internet resource.</summary>
984       <param name="asyncResult">The pending request for a response.</param>
985       <exception cref="T:System.ArgumentNullException">
986         <paramref name="asyncResult" /> is <see langword="null" />.</exception>
987       <exception cref="T:System.InvalidOperationException">This method was called previously using <paramref name="asyncResult" />.  
988   
989  -or-  
990   
991  The <see cref="P:System.Net.HttpWebRequest.ContentLength" /> property is greater than 0 but the data has not been written to the request stream.</exception>
992       <exception cref="T:System.Net.WebException">
993         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.  
994   
995  -or-  
996   
997  An error occurred while processing the request.</exception>
998       <exception cref="T:System.ArgumentException">
999         <paramref name="asyncResult" /> was not returned by the current instance from a call to <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
1000       <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the Internet resource.</returns>
1001     </member>
1002     <member name="M:System.Net.HttpWebRequest.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1003       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data required to serialize the target object.</summary>
1004       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
1005       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
1006     </member>
1007     <member name="M:System.Net.HttpWebRequest.GetRequestStream">
1008       <summary>Gets a <see cref="T:System.IO.Stream" /> object to use to write request data.</summary>
1009       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.HttpWebRequest.Method" /> property is GET or HEAD.  
1010   
1011  -or-  
1012   
1013  <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />, and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.</exception>
1014       <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> method is called more than once.  
1015   
1016  -or-  
1017   
1018  <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.</exception>
1019       <exception cref="T:System.NotSupportedException">The request cache validator indicated that the response for this request can be served from the cache; however, requests that write data must not use the cache. This exception can occur if you are using a custom cache validator that is incorrectly implemented.</exception>
1020       <exception cref="T:System.Net.WebException">
1021         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.  
1022   
1023  -or-  
1024   
1025  The time-out period for the request expired.  
1026   
1027  -or-  
1028   
1029  An error occurred while processing the request.</exception>
1030       <exception cref="T:System.ObjectDisposedException">In a .NET Compact Framework application, a request stream with zero content length was not obtained and closed correctly. For more information about handling zero content length requests, see Network Programming in the .NET Compact Framework.</exception>
1031       <returns>A <see cref="T:System.IO.Stream" /> to use to write request data.</returns>
1032     </member>
1033     <member name="M:System.Net.HttpWebRequest.GetRequestStream(System.Net.TransportContext@)">
1034       <summary>Gets a <see cref="T:System.IO.Stream" /> object to use to write request data and outputs the <see cref="T:System.Net.TransportContext" /> associated with the stream.</summary>
1035       <param name="context">The <see cref="T:System.Net.TransportContext" /> for the <see cref="T:System.IO.Stream" />.</param>
1036       <exception cref="T:System.Exception">The <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> method was unable to obtain the <see cref="T:System.IO.Stream" />.</exception>
1037       <exception cref="T:System.InvalidOperationException">The <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> method is called more than once.  
1038   
1039  -or-  
1040   
1041  <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.</exception>
1042       <exception cref="T:System.NotSupportedException">The request cache validator indicated that the response for this request can be served from the cache; however, requests that write data must not use the cache. This exception can occur if you are using a custom cache validator that is incorrectly implemented.</exception>
1043       <exception cref="T:System.Net.ProtocolViolationException">The <see cref="P:System.Net.HttpWebRequest.Method" /> property is GET or HEAD.  
1044   
1045  -or-  
1046   
1047  <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />, and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.</exception>
1048       <exception cref="T:System.Net.WebException">
1049         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.  
1050   
1051  -or-  
1052   
1053  The time-out period for the request expired.  
1054   
1055  -or-  
1056   
1057  An error occurred while processing the request.</exception>
1058       <returns>A <see cref="T:System.IO.Stream" /> to use to write request data.</returns>
1059     </member>
1060     <member name="M:System.Net.HttpWebRequest.GetResponse">
1061       <summary>Returns a response from an Internet resource.</summary>
1062       <exception cref="T:System.InvalidOperationException">The stream is already in use by a previous call to <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.  
1063   
1064  -or-  
1065   
1066  <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to a value and <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.</exception>
1067       <exception cref="T:System.Net.ProtocolViolationException">
1068         <see cref="P:System.Net.HttpWebRequest.Method" /> is GET or HEAD, and either <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater or equal to zero or <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="true" />.  
1069   
1070  -or-  
1071   
1072  <see cref="P:System.Net.HttpWebRequest.KeepAlive" /> is <see langword="true" />, <see cref="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering" /> is <see langword="false" />, <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is -1, <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />, and <see cref="P:System.Net.HttpWebRequest.Method" /> is POST or PUT.  
1073   
1074  -or-  
1075   
1076  The <see cref="T:System.Net.HttpWebRequest" /> has an entity body but the <see cref="M:System.Net.HttpWebRequest.GetResponse" /> method is called without calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> method.  
1077   
1078  -or-  
1079   
1080  The <see cref="P:System.Net.HttpWebRequest.ContentLength" /> is greater than zero, but the application does not write all of the promised data.</exception>
1081       <exception cref="T:System.NotSupportedException">The request cache validator indicated that the response for this request can be served from the cache; however, this request includes data to be sent to the server. Requests that send data must not use the cache. This exception can occur if you are using a custom cache validator that is incorrectly implemented.</exception>
1082       <exception cref="T:System.Net.WebException">
1083         <see cref="M:System.Net.HttpWebRequest.Abort" /> was previously called.  
1084   
1085  -or-  
1086   
1087  The time-out period for the request expired.  
1088   
1089  -or-  
1090   
1091  An error occurred while processing the request.</exception>
1092       <returns>A <see cref="T:System.Net.WebResponse" /> that contains the response from the Internet resource.</returns>
1093     </member>
1094     <member name="M:System.Net.HttpWebRequest.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1095       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
1096       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
1097       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
1098     </member>
1099     <member name="P:System.Net.HttpWebRequest.Accept">
1100       <summary>Gets or sets the value of the <see langword="Accept" /> HTTP header.</summary>
1101       <returns>The value of the <see langword="Accept" /> HTTP header. The default value is <see langword="null" />.</returns>
1102     </member>
1103     <member name="P:System.Net.HttpWebRequest.Address">
1104       <summary>Gets the Uniform Resource Identifier (URI) of the Internet resource that actually responds to the request.</summary>
1105       <returns>A <see cref="T:System.Uri" /> that identifies the Internet resource that actually responds to the request. The default is the URI used by the <see cref="M:System.Net.WebRequest.Create(System.String)" /> method to initialize the request.</returns>
1106     </member>
1107     <member name="P:System.Net.HttpWebRequest.AllowAutoRedirect">
1108       <summary>Gets or sets a value that indicates whether the request should follow redirection responses.</summary>
1109       <returns>
1110         <see langword="true" /> if the request should automatically follow redirection responses from the Internet resource; otherwise, <see langword="false" />. The default value is <see langword="true" />.</returns>
1111     </member>
1112     <member name="P:System.Net.HttpWebRequest.AllowReadStreamBuffering">
1113       <summary>Gets or sets a value that indicates whether to buffer the received from the Internet resource.</summary>
1114       <returns>
1115         <see langword="true" /> to enable buffering of the data received from the Internet resource; <see langword="false" /> to disable buffering. The default is <see langword="false" />.</returns>
1116     </member>
1117     <member name="P:System.Net.HttpWebRequest.AllowWriteStreamBuffering">
1118       <summary>Gets or sets a value that indicates whether to buffer the data sent to the Internet resource.</summary>
1119       <returns>
1120         <see langword="true" /> to enable buffering of the data sent to the Internet resource; <see langword="false" /> to disable buffering. The default is <see langword="true" />.</returns>
1121     </member>
1122     <member name="P:System.Net.HttpWebRequest.AutomaticDecompression">
1123       <summary>Gets or sets the type of decompression that is used.</summary>
1124       <exception cref="T:System.InvalidOperationException">The object's current state does not allow this property to be set.</exception>
1125       <returns>A <see cref="T:System.Net.DecompressionMethods" /> object that indicates the type of decompression that is used.</returns>
1126     </member>
1127     <member name="P:System.Net.HttpWebRequest.ClientCertificates">
1128       <summary>Gets or sets the collection of security certificates that are associated with this request.</summary>
1129       <exception cref="T:System.ArgumentNullException">The value specified for a set operation is <see langword="null" />.</exception>
1130       <returns>The <see cref="T:System.Security.Cryptography.X509Certificates.X509CertificateCollection" /> that contains the security certificates associated with this request.</returns>
1131     </member>
1132     <member name="P:System.Net.HttpWebRequest.Connection">
1133       <summary>Gets or sets the value of the <see langword="Connection" /> HTTP header.</summary>
1134       <exception cref="T:System.ArgumentException">The value of <see cref="P:System.Net.HttpWebRequest.Connection" /> is set to Keep-alive or Close.</exception>
1135       <returns>The value of the <see langword="Connection" /> HTTP header. The default value is <see langword="null" />.</returns>
1136     </member>
1137     <member name="P:System.Net.HttpWebRequest.ConnectionGroupName">
1138       <summary>Gets or sets the name of the connection group for the request.</summary>
1139       <returns>The name of the connection group for this request. The default value is <see langword="null" />.</returns>
1140     </member>
1141     <member name="P:System.Net.HttpWebRequest.ContentLength">
1142       <summary>Gets or sets the <see langword="Content-length" /> HTTP header.</summary>
1143       <exception cref="T:System.InvalidOperationException">The request has been started by calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method.</exception>
1144       <exception cref="T:System.ArgumentOutOfRangeException">The new <see cref="P:System.Net.HttpWebRequest.ContentLength" /> value is less than 0.</exception>
1145       <returns>The number of bytes of data to send to the Internet resource. The default is -1, which indicates the property has not been set and that there is no request data to send.</returns>
1146     </member>
1147     <member name="P:System.Net.HttpWebRequest.ContentType">
1148       <summary>Gets or sets the value of the <see langword="Content-type" /> HTTP header.</summary>
1149       <returns>The value of the <see langword="Content-type" /> HTTP header. The default value is <see langword="null" />.</returns>
1150     </member>
1151     <member name="P:System.Net.HttpWebRequest.ContinueDelegate">
1152       <summary>Gets or sets the delegate method called when an HTTP 100-continue response is received from the Internet resource.</summary>
1153       <returns>A delegate that implements the callback method that executes when an HTTP Continue response is returned from the Internet resource. The default value is <see langword="null" />.</returns>
1154     </member>
1155     <member name="P:System.Net.HttpWebRequest.ContinueTimeout">
1156       <summary>Gets or sets a timeout, in milliseconds, to wait until the 100-Continue is received from the server.</summary>
1157       <returns>The timeout, in milliseconds, to wait until the 100-Continue is received.</returns>
1158     </member>
1159     <member name="P:System.Net.HttpWebRequest.CookieContainer">
1160       <summary>Gets or sets the cookies associated with the request.</summary>
1161       <returns>A <see cref="T:System.Net.CookieContainer" /> that contains the cookies associated with this request.</returns>
1162     </member>
1163     <member name="P:System.Net.HttpWebRequest.Credentials">
1164       <summary>Gets or sets authentication information for the request.</summary>
1165       <returns>An <see cref="T:System.Net.ICredentials" /> that contains the authentication credentials associated with the request. The default is <see langword="null" />.</returns>
1166     </member>
1167     <member name="P:System.Net.HttpWebRequest.Date">
1168       <summary>Gets or sets the <see langword="Date" /> HTTP header value to use in an HTTP request.</summary>
1169       <returns>The Date header value in the HTTP request.</returns>
1170     </member>
1171     <member name="P:System.Net.HttpWebRequest.DefaultCachePolicy">
1172       <summary>Gets or sets the default cache policy for this request.</summary>
1173       <returns>A <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> that specifies the cache policy in effect for this request when no other policy is applicable.</returns>
1174     </member>
1175     <member name="P:System.Net.HttpWebRequest.DefaultMaximumErrorResponseLength">
1176       <summary>Gets or sets the default maximum length of an HTTP error response.</summary>
1177       <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 and is not equal to -1.</exception>
1178       <returns>The default maximum length of an HTTP error response.</returns>
1179     </member>
1180     <member name="P:System.Net.HttpWebRequest.DefaultMaximumResponseHeadersLength">
1181       <summary>Gets or sets the default for the <see cref="P:System.Net.HttpWebRequest.MaximumResponseHeadersLength" /> property.</summary>
1182       <exception cref="T:System.ArgumentOutOfRangeException">The value is not equal to -1 and is less than zero.</exception>
1183       <returns>The length, in kilobytes (1024 bytes), of the default maximum for response headers received. The default configuration file sets this value to 64 kilobytes.</returns>
1184     </member>
1185     <member name="P:System.Net.HttpWebRequest.Expect">
1186       <summary>Gets or sets the value of the <see langword="Expect" /> HTTP header.</summary>
1187       <exception cref="T:System.ArgumentException">
1188         <see langword="Expect" /> is set to a string that contains "100-continue" as a substring.</exception>
1189       <returns>The contents of the <see langword="Expect" /> HTTP header. The default value is <see langword="null" />.</returns>
1190     </member>
1191     <member name="P:System.Net.HttpWebRequest.HaveResponse">
1192       <summary>Gets a value that indicates whether a response has been received from an Internet resource.</summary>
1193       <returns>
1194         <see langword="true" /> if a response has been received; otherwise, <see langword="false" />.</returns>
1195     </member>
1196     <member name="P:System.Net.HttpWebRequest.Headers">
1197       <summary>Specifies a collection of the name/value pairs that make up the HTTP headers.</summary>
1198       <exception cref="T:System.InvalidOperationException">The request has been started by calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method.</exception>
1199       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains the name/value pairs that make up the headers for the HTTP request.</returns>
1200     </member>
1201     <member name="P:System.Net.HttpWebRequest.Host">
1202       <summary>Gets or sets the Host header value to use in an HTTP request independent from the request URI.</summary>
1203       <exception cref="T:System.ArgumentNullException">The Host header cannot be set to <see langword="null" />.</exception>
1204       <exception cref="T:System.ArgumentException">The Host header cannot be set to an invalid value.</exception>
1205       <exception cref="T:System.InvalidOperationException">The Host header cannot be set after the <see cref="T:System.Net.HttpWebRequest" /> has already started to be sent.</exception>
1206       <returns>The Host header value in the HTTP request.</returns>
1207     </member>
1208     <member name="P:System.Net.HttpWebRequest.IfModifiedSince">
1209       <summary>Gets or sets the value of the <c>If-Modified-Since</c> HTTP header.</summary>
1210       <returns>A <see cref="T:System.DateTime" /> that contains the contents of the <see langword="If-Modified-Since" /> HTTP header.</returns>
1211     </member>
1212     <member name="P:System.Net.HttpWebRequest.KeepAlive">
1213       <summary>Gets or sets a value that indicates whether to make a persistent connection to the Internet resource.</summary>
1214       <returns>
1215         <see langword="true" /> if the request to the Internet resource should contain a <see langword="Connection" /> HTTP header with the value Keep-alive; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
1216     </member>
1217     <member name="P:System.Net.HttpWebRequest.MaximumAutomaticRedirections">
1218       <summary>Gets or sets the maximum number of redirects that the request follows.</summary>
1219       <exception cref="T:System.ArgumentException">The value is set to 0 or less.</exception>
1220       <returns>The maximum number of redirection responses that the request follows. The default value is 50.</returns>
1221     </member>
1222     <member name="P:System.Net.HttpWebRequest.MaximumResponseHeadersLength">
1223       <summary>Gets or sets the maximum allowed length of the response headers.</summary>
1224       <exception cref="T:System.InvalidOperationException">The property is set after the request has already been submitted.</exception>
1225       <exception cref="T:System.ArgumentOutOfRangeException">The value is less than 0 and is not equal to -1.</exception>
1226       <returns>The length, in kilobytes (1024 bytes), of the response headers.</returns>
1227     </member>
1228     <member name="P:System.Net.HttpWebRequest.MediaType">
1229       <summary>Gets or sets the media type of the request.</summary>
1230       <returns>The media type of the request. The default value is <see langword="null" />.</returns>
1231     </member>
1232     <member name="P:System.Net.HttpWebRequest.Method">
1233       <summary>Gets or sets the method for the request.</summary>
1234       <exception cref="T:System.ArgumentException">No method is supplied.  
1235   
1236  -or-  
1237   
1238  The method string contains invalid characters.</exception>
1239       <returns>The request method to use to contact the Internet resource. The default value is GET.</returns>
1240     </member>
1241     <member name="P:System.Net.HttpWebRequest.Pipelined">
1242       <summary>Gets or sets a value that indicates whether to pipeline the request to the Internet resource.</summary>
1243       <returns>
1244         <see langword="true" /> if the request should be pipelined; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
1245     </member>
1246     <member name="P:System.Net.HttpWebRequest.PreAuthenticate">
1247       <summary>Gets or sets a value that indicates whether to send an Authorization header with the request.</summary>
1248       <returns>
1249         <see langword="true" /> to send an  HTTP Authorization header with requests after authentication has taken place; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
1250     </member>
1251     <member name="P:System.Net.HttpWebRequest.ProtocolVersion">
1252       <summary>Gets or sets the version of HTTP to use for the request.</summary>
1253       <exception cref="T:System.ArgumentException">The HTTP version is set to a value other than 1.0 or 1.1.</exception>
1254       <returns>The HTTP version to use for the request. The default is <see cref="F:System.Net.HttpVersion.Version11" />.</returns>
1255     </member>
1256     <member name="P:System.Net.HttpWebRequest.Proxy">
1257       <summary>Gets or sets proxy information for the request.</summary>
1258       <exception cref="T:System.ArgumentNullException">
1259         <see cref="P:System.Net.HttpWebRequest.Proxy" /> is set to <see langword="null" />.</exception>
1260       <exception cref="T:System.InvalidOperationException">The request has been started by calling <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" />.</exception>
1261       <exception cref="T:System.Security.SecurityException">The caller does not have permission for the requested operation.</exception>
1262       <returns>The <see cref="T:System.Net.IWebProxy" /> object to use to proxy the request. The default value is set by calling the <see cref="P:System.Net.GlobalProxySelection.Select" /> property.</returns>
1263     </member>
1264     <member name="P:System.Net.HttpWebRequest.ReadWriteTimeout">
1265       <summary>Gets or sets a time-out in milliseconds when writing to or reading from a stream.</summary>
1266       <exception cref="T:System.InvalidOperationException">The request has already been sent.</exception>
1267       <exception cref="T:System.ArgumentOutOfRangeException">The value specified for a set operation is less than or equal to zero and is not equal to <see cref="F:System.Threading.Timeout.Infinite" /></exception>
1268       <returns>The number of milliseconds before the writing or reading times out. The default value is 300,000 milliseconds (5 minutes).</returns>
1269     </member>
1270     <member name="P:System.Net.HttpWebRequest.Referer">
1271       <summary>Gets or sets the value of the <see langword="Referer" /> HTTP header.</summary>
1272       <returns>The value of the <see langword="Referer" /> HTTP header. The default value is <see langword="null" />.</returns>
1273     </member>
1274     <member name="P:System.Net.HttpWebRequest.RequestUri">
1275       <summary>Gets the original Uniform Resource Identifier (URI) of the request.</summary>
1276       <returns>A <see cref="T:System.Uri" /> that contains the URI of the Internet resource passed to the <see cref="M:System.Net.WebRequest.Create(System.String)" /> method.</returns>
1277     </member>
1278     <member name="P:System.Net.HttpWebRequest.SendChunked">
1279       <summary>Gets or sets a value that indicates whether to send data in segments to the Internet resource.</summary>
1280       <exception cref="T:System.InvalidOperationException">The request has been started by calling the <see cref="M:System.Net.HttpWebRequest.GetRequestStream" />, <see cref="M:System.Net.HttpWebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)" />, <see cref="M:System.Net.HttpWebRequest.GetResponse" />, or <see cref="M:System.Net.HttpWebRequest.BeginGetResponse(System.AsyncCallback,System.Object)" /> method.</exception>
1281       <returns>
1282         <see langword="true" /> to send data to the Internet resource in segments; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
1283     </member>
1284     <member name="P:System.Net.HttpWebRequest.ServerCertificateValidationCallback">
1285       <summary>Gets or sets a callback function to validate the server certificate.</summary>
1286       <returns>A callback function to validate the server certificate.</returns>
1287     </member>
1288     <member name="P:System.Net.HttpWebRequest.ServicePoint">
1289       <summary>Gets the service point to use for the request.</summary>
1290       <returns>A <see cref="T:System.Net.ServicePoint" /> that represents the network connection to the Internet resource.</returns>
1291     </member>
1292     <member name="P:System.Net.HttpWebRequest.SupportsCookieContainer">
1293       <summary>Gets a value that indicates whether the request provides support for a <see cref="T:System.Net.CookieContainer" />.</summary>
1294       <returns>
1295         <see langword="true" /> if the request provides support for a <see cref="T:System.Net.CookieContainer" />; otherwise, <see langword="false" />.</returns>
1296     </member>
1297     <member name="P:System.Net.HttpWebRequest.Timeout">
1298       <summary>Gets or sets the time-out value in milliseconds for the <see cref="M:System.Net.HttpWebRequest.GetResponse" /> and <see cref="M:System.Net.HttpWebRequest.GetRequestStream" /> methods.</summary>
1299       <exception cref="T:System.ArgumentOutOfRangeException">The value specified is less than zero and is not <see cref="F:System.Threading.Timeout.Infinite" />.</exception>
1300       <returns>The number of milliseconds to wait before the request times out. The default value is 100,000 milliseconds (100 seconds).</returns>
1301     </member>
1302     <member name="P:System.Net.HttpWebRequest.TransferEncoding">
1303       <summary>Gets or sets the value of the <see langword="Transfer-encoding" /> HTTP header.</summary>
1304       <exception cref="T:System.InvalidOperationException">
1305         <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set when <see cref="P:System.Net.HttpWebRequest.SendChunked" /> is <see langword="false" />.</exception>
1306       <exception cref="T:System.ArgumentException">
1307         <see cref="P:System.Net.HttpWebRequest.TransferEncoding" /> is set to the value "Chunked".</exception>
1308       <returns>The value of the <see langword="Transfer-encoding" /> HTTP header. The default value is <see langword="null" />.</returns>
1309     </member>
1310     <member name="P:System.Net.HttpWebRequest.UnsafeAuthenticatedConnectionSharing">
1311       <summary>Gets or sets a value that indicates whether to allow high-speed NTLM-authenticated connection sharing.</summary>
1312       <returns>
1313         <see langword="true" /> to keep the authenticated connection open; otherwise, <see langword="false" />.</returns>
1314     </member>
1315     <member name="P:System.Net.HttpWebRequest.UseDefaultCredentials">
1316       <summary>Gets or sets a <see cref="T:System.Boolean" /> value that controls whether default credentials are sent with requests.</summary>
1317       <exception cref="T:System.InvalidOperationException">You attempted to set this property after the request was sent.</exception>
1318       <returns>
1319         <see langword="true" /> if the default credentials are used; otherwise, <see langword="false" />. The default value is <see langword="false" />.</returns>
1320     </member>
1321     <member name="P:System.Net.HttpWebRequest.UserAgent">
1322       <summary>Gets or sets the value of the <see langword="User-agent" /> HTTP header.</summary>
1323       <returns>The value of the <see langword="User-agent" /> HTTP header. The default value is <see langword="null" />.</returns>
1324     </member>
1325     <member name="T:System.Net.HttpWebResponse">
1326       <summary>Provides an HTTP-specific implementation of the <see cref="T:System.Net.WebResponse" /> class.</summary>
1327     </member>
1328     <member name="M:System.Net.HttpWebResponse.#ctor">
1329       <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebResponse" /> class.</summary>
1330     </member>
1331     <member name="M:System.Net.HttpWebResponse.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1332       <summary>Initializes a new instance of the <see cref="T:System.Net.HttpWebResponse" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
1333       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information required to serialize the new <see cref="T:System.Net.HttpWebRequest" />.</param>
1334       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.HttpWebRequest" />.</param>
1335     </member>
1336     <member name="M:System.Net.HttpWebResponse.Close">
1337       <summary>Closes the response stream.</summary>
1338       <exception cref="T:System.ObjectDisposedException">.NET Core only: This <see cref="T:System.Net.HttpWebResponse" /> object has been disposed.</exception>
1339     </member>
1340     <member name="M:System.Net.HttpWebResponse.Dispose(System.Boolean)">
1341       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.HttpWebResponse" />, and optionally disposes of the managed resources.</summary>
1342       <param name="disposing">
1343         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to releases only unmanaged resources.</param>
1344     </member>
1345     <member name="M:System.Net.HttpWebResponse.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1346       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
1347       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
1348       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
1349     </member>
1350     <member name="M:System.Net.HttpWebResponse.GetResponseHeader(System.String)">
1351       <summary>Gets the contents of a header that was returned with the response.</summary>
1352       <param name="headerName">The header value to return.</param>
1353       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1354       <returns>The contents of the specified header.</returns>
1355     </member>
1356     <member name="M:System.Net.HttpWebResponse.GetResponseStream">
1357       <summary>Gets the stream that is used to read the body of the response from the server.</summary>
1358       <exception cref="T:System.Net.ProtocolViolationException">There is no response stream.</exception>
1359       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1360       <returns>A <see cref="T:System.IO.Stream" /> containing the body of the response.</returns>
1361     </member>
1362     <member name="M:System.Net.HttpWebResponse.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1363       <summary>Serializes this instance into the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</summary>
1364       <param name="serializationInfo">The object into which this <see cref="T:System.Net.HttpWebResponse" /> will be serialized.</param>
1365       <param name="streamingContext">The destination of the serialization.</param>
1366     </member>
1367     <member name="P:System.Net.HttpWebResponse.CharacterSet">
1368       <summary>Gets the character set of the response.</summary>
1369       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1370       <returns>A string that contains the character set of the response.</returns>
1371     </member>
1372     <member name="P:System.Net.HttpWebResponse.ContentEncoding">
1373       <summary>Gets the method that is used to encode the body of the response.</summary>
1374       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1375       <returns>A string that describes the method that is used to encode the body of the response.</returns>
1376     </member>
1377     <member name="P:System.Net.HttpWebResponse.ContentLength">
1378       <summary>Gets the length of the content returned by the request.</summary>
1379       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1380       <returns>The number of bytes returned by the request. Content length does not include header information.</returns>
1381     </member>
1382     <member name="P:System.Net.HttpWebResponse.ContentType">
1383       <summary>Gets the content type of the response.</summary>
1384       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1385       <returns>A string that contains the content type of the response.</returns>
1386     </member>
1387     <member name="P:System.Net.HttpWebResponse.Cookies">
1388       <summary>Gets or sets the cookies that are associated with this response.</summary>
1389       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1390       <returns>A <see cref="T:System.Net.CookieCollection" /> that contains the cookies that are associated with this response.</returns>
1391     </member>
1392     <member name="P:System.Net.HttpWebResponse.Headers">
1393       <summary>Gets the headers that are associated with this response from the server.</summary>
1394       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1395       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> that contains the header information returned with the response.</returns>
1396     </member>
1397     <member name="P:System.Net.HttpWebResponse.IsMutuallyAuthenticated">
1398       <summary>Gets a <see cref="T:System.Boolean" /> value that indicates whether both client and server were authenticated.</summary>
1399       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1400       <returns>
1401         <see langword="true" /> if mutual authentication occurred; otherwise, <see langword="false" />.</returns>
1402     </member>
1403     <member name="P:System.Net.HttpWebResponse.LastModified">
1404       <summary>Gets the last date and time that the contents of the response were modified.</summary>
1405       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1406       <returns>A <see cref="T:System.DateTime" /> that contains the date and time that the contents of the response were modified.</returns>
1407     </member>
1408     <member name="P:System.Net.HttpWebResponse.Method">
1409       <summary>Gets the method that is used to return the response.</summary>
1410       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1411       <returns>A string that contains the HTTP method that is used to return the response.</returns>
1412     </member>
1413     <member name="P:System.Net.HttpWebResponse.ProtocolVersion">
1414       <summary>Gets the version of the HTTP protocol that is used in the response.</summary>
1415       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1416       <returns>A <see cref="T:System.Version" /> that contains the HTTP protocol version of the response.</returns>
1417     </member>
1418     <member name="P:System.Net.HttpWebResponse.ResponseUri">
1419       <summary>Gets the URI of the Internet resource that responded to the request.</summary>
1420       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1421       <returns>The URI of the Internet resource that responded to the request.</returns>
1422     </member>
1423     <member name="P:System.Net.HttpWebResponse.Server">
1424       <summary>Gets the name of the server that sent the response.</summary>
1425       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1426       <returns>A string that contains the name of the server that sent the response.</returns>
1427     </member>
1428     <member name="P:System.Net.HttpWebResponse.StatusCode">
1429       <summary>Gets the status of the response.</summary>
1430       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1431       <returns>One of the <see cref="T:System.Net.HttpStatusCode" /> values.</returns>
1432     </member>
1433     <member name="P:System.Net.HttpWebResponse.StatusDescription">
1434       <summary>Gets the status description returned with the response.</summary>
1435       <exception cref="T:System.ObjectDisposedException">The current instance has been disposed.</exception>
1436       <returns>A string that describes the status of the response.</returns>
1437     </member>
1438     <member name="P:System.Net.HttpWebResponse.SupportsHeaders">
1439       <summary>Gets a value that indicates whether headers are supported.</summary>
1440       <returns>
1441         <see langword="true" /> if headers are supported; otherwise, <see langword="false" />. Always returns <see langword="true" />.</returns>
1442     </member>
1443     <member name="T:System.Net.IAuthenticationModule">
1444       <summary>Provides the base authentication interface for Web client authentication modules.</summary>
1445     </member>
1446     <member name="M:System.Net.IAuthenticationModule.Authenticate(System.String,System.Net.WebRequest,System.Net.ICredentials)">
1447       <summary>Returns an instance of the <see cref="T:System.Net.Authorization" /> class in response to an authentication challenge from a server.</summary>
1448       <param name="challenge">The authentication challenge sent by the server.</param>
1449       <param name="request">The <see cref="T:System.Net.WebRequest" /> instance associated with the challenge.</param>
1450       <param name="credentials">The credentials associated with the challenge.</param>
1451       <returns>An <see cref="T:System.Net.Authorization" /> instance containing the authorization message for the request, or <see langword="null" /> if the challenge cannot be handled.</returns>
1452     </member>
1453     <member name="M:System.Net.IAuthenticationModule.PreAuthenticate(System.Net.WebRequest,System.Net.ICredentials)">
1454       <summary>Returns an instance of the <see cref="T:System.Net.Authorization" /> class for an authentication request to a server.</summary>
1455       <param name="request">The <see cref="T:System.Net.WebRequest" /> instance associated with the authentication request.</param>
1456       <param name="credentials">The credentials associated with the authentication request.</param>
1457       <returns>An <see cref="T:System.Net.Authorization" /> instance containing the authorization message for the request.</returns>
1458     </member>
1459     <member name="P:System.Net.IAuthenticationModule.AuthenticationType">
1460       <summary>Gets the authentication type provided by this authentication module.</summary>
1461       <returns>A string indicating the authentication type provided by this authentication module.</returns>
1462     </member>
1463     <member name="P:System.Net.IAuthenticationModule.CanPreAuthenticate">
1464       <summary>Gets a value indicating whether the authentication module supports preauthentication.</summary>
1465       <returns>
1466         <see langword="true" /> if the authorization module supports preauthentication; otherwise <see langword="false" />.</returns>
1467     </member>
1468     <member name="T:System.Net.ICredentialPolicy">
1469       <summary>Defines the credential policy to be used for resource requests that are made using <see cref="T:System.Net.WebRequest" /> and its derived classes.</summary>
1470     </member>
1471     <member name="M:System.Net.ICredentialPolicy.ShouldSendCredential(System.Uri,System.Net.WebRequest,System.Net.NetworkCredential,System.Net.IAuthenticationModule)">
1472       <summary>Returns a <see cref="T:System.Boolean" /> that indicates whether the client's credentials are sent with a resource request made using an instance of the <see cref="T:System.Net.WebRequest" /> class.</summary>
1473       <param name="challengeUri">The <see cref="T:System.Uri" /> that will receive the request.</param>
1474       <param name="request">The <see cref="T:System.Net.WebRequest" /> that represents the resource being requested.</param>
1475       <param name="credential">The <see cref="T:System.Net.NetworkCredential" /> that will be sent with the request if this method returns <see langword="true" />.</param>
1476       <param name="authenticationModule">The <see cref="T:System.Net.IAuthenticationModule" /> that will conduct the authentication, if authentication is required.</param>
1477       <returns>
1478         <see langword="true" /> if the credentials are sent with the request; otherwise, <see langword="false" />.</returns>
1479     </member>
1480     <member name="T:System.Net.IWebRequestCreate">
1481       <summary>Provides the base interface for creating <see cref="T:System.Net.WebRequest" /> instances.</summary>
1482     </member>
1483     <member name="M:System.Net.IWebRequestCreate.Create(System.Uri)">
1484       <summary>Creates a <see cref="T:System.Net.WebRequest" /> instance.</summary>
1485       <param name="uri">The uniform resource identifier (URI) of the Web resource.</param>
1486       <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="uri" /> is not supported by this <see cref="T:System.Net.IWebRequestCreate" /> instance.</exception>
1487       <exception cref="T:System.ArgumentNullException">
1488         <paramref name="uri" /> is <see langword="null" />.</exception>
1489       <exception cref="T:System.UriFormatException">The URI specified in <paramref name="uri" /> is not a valid URI.
1490
1491 Note: In .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.</exception>
1492       <returns>A <see cref="T:System.Net.WebRequest" /> instance.</returns>
1493     </member>
1494     <member name="T:System.Net.ProtocolViolationException">
1495       <summary>The exception that is thrown when an error is made while using a network protocol.</summary>
1496     </member>
1497     <member name="M:System.Net.ProtocolViolationException.#ctor">
1498       <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class.</summary>
1499     </member>
1500     <member name="M:System.Net.ProtocolViolationException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1501       <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
1502       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information that is required to deserialize the <see cref="T:System.Net.ProtocolViolationException" />.</param>
1503       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.ProtocolViolationException" />.</param>
1504     </member>
1505     <member name="M:System.Net.ProtocolViolationException.#ctor(System.String)">
1506       <summary>Initializes a new instance of the <see cref="T:System.Net.ProtocolViolationException" /> class with the specified message.</summary>
1507       <param name="message">The error message string.</param>
1508     </member>
1509     <member name="M:System.Net.ProtocolViolationException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1510       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data required to serialize the target object.</summary>
1511       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
1512       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
1513     </member>
1514     <member name="M:System.Net.ProtocolViolationException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1515       <summary>Serializes this instance into the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</summary>
1516       <param name="serializationInfo">The object into which this <see cref="T:System.Net.ProtocolViolationException" /> will be serialized.</param>
1517       <param name="streamingContext">The destination of the serialization.</param>
1518     </member>
1519     <member name="T:System.Net.WebException">
1520       <summary>The exception that is thrown when an error occurs while accessing the network through a pluggable protocol.</summary>
1521     </member>
1522     <member name="M:System.Net.WebException.#ctor">
1523       <summary>Initializes a new instance of the <see cref="T:System.Net.WebException" /> class.</summary>
1524     </member>
1525     <member name="M:System.Net.WebException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1526       <summary>Initializes a new instance of the <see cref="T:System.Net.WebException" /> class from the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> instances.</summary>
1527       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that contains the information required to serialize the new <see cref="T:System.Net.WebException" />.</param>
1528       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the source of the serialized stream that is associated with the new <see cref="T:System.Net.WebException" />.</param>
1529     </member>
1530     <member name="M:System.Net.WebException.#ctor(System.String)">
1531       <summary>Initializes a new instance of the <see cref="T:System.Net.WebException" /> class with the specified error message.</summary>
1532       <param name="message">The text of the error message.</param>
1533     </member>
1534     <member name="M:System.Net.WebException.#ctor(System.String,System.Exception)">
1535       <summary>Initializes a new instance of the <see cref="T:System.Net.WebException" /> class with the specified error message and nested exception.</summary>
1536       <param name="message">The text of the error message.</param>
1537       <param name="innerException">A nested exception.</param>
1538     </member>
1539     <member name="M:System.Net.WebException.#ctor(System.String,System.Exception,System.Net.WebExceptionStatus,System.Net.WebResponse)">
1540       <summary>Initializes a new instance of the <see cref="T:System.Net.WebException" /> class with the specified error message, nested exception, status, and response.</summary>
1541       <param name="message">The text of the error message.</param>
1542       <param name="innerException">A nested exception.</param>
1543       <param name="status">One of the <see cref="T:System.Net.WebExceptionStatus" /> values.</param>
1544       <param name="response">A <see cref="T:System.Net.WebResponse" /> instance that contains the response from the remote host.</param>
1545     </member>
1546     <member name="M:System.Net.WebException.#ctor(System.String,System.Net.WebExceptionStatus)">
1547       <summary>Initializes a new instance of the <see cref="T:System.Net.WebException" /> class with the specified error message and status.</summary>
1548       <param name="message">The text of the error message.</param>
1549       <param name="status">One of the <see cref="T:System.Net.WebExceptionStatus" /> values.</param>
1550     </member>
1551     <member name="M:System.Net.WebException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1552       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.WebException" />.</summary>
1553       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
1554       <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
1555     </member>
1556     <member name="M:System.Net.WebException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1557       <summary>Serializes this instance into the specified <see cref="T:System.Runtime.Serialization.SerializationInfo" /> object.</summary>
1558       <param name="serializationInfo">The object into which this <see cref="T:System.Net.WebException" /> will be serialized.</param>
1559       <param name="streamingContext">The destination of the serialization.</param>
1560     </member>
1561     <member name="P:System.Net.WebException.Response">
1562       <summary>Gets the response that the remote host returned.</summary>
1563       <returns>If a response is available from the Internet resource, a <see cref="T:System.Net.WebResponse" /> instance that contains the error response from an Internet resource; otherwise, <see langword="null" />.</returns>
1564     </member>
1565     <member name="P:System.Net.WebException.Status">
1566       <summary>Gets the status of the response.</summary>
1567       <returns>One of the <see cref="T:System.Net.WebExceptionStatus" /> values.</returns>
1568     </member>
1569     <member name="T:System.Net.WebExceptionStatus">
1570       <summary>Defines status codes for the <see cref="T:System.Net.WebException" /> class.</summary>
1571     </member>
1572     <member name="F:System.Net.WebExceptionStatus.CacheEntryNotFound">
1573       <summary>The specified cache entry was not found.</summary>
1574     </member>
1575     <member name="F:System.Net.WebExceptionStatus.ConnectFailure">
1576       <summary>The remote service point could not be contacted at the transport level.</summary>
1577     </member>
1578     <member name="F:System.Net.WebExceptionStatus.ConnectionClosed">
1579       <summary>The connection was prematurely closed.</summary>
1580     </member>
1581     <member name="F:System.Net.WebExceptionStatus.KeepAliveFailure">
1582       <summary>The connection for a request that specifies the Keep-alive header was closed unexpectedly.</summary>
1583     </member>
1584     <member name="F:System.Net.WebExceptionStatus.MessageLengthLimitExceeded">
1585       <summary>A message was received that exceeded the specified limit when sending a request or receiving a response from the server.</summary>
1586     </member>
1587     <member name="F:System.Net.WebExceptionStatus.NameResolutionFailure">
1588       <summary>The name resolver service could not resolve the host name.</summary>
1589     </member>
1590     <member name="F:System.Net.WebExceptionStatus.Pending">
1591       <summary>An internal asynchronous request is pending.</summary>
1592     </member>
1593     <member name="F:System.Net.WebExceptionStatus.PipelineFailure">
1594       <summary>The request was a pipelined request and the connection was closed before the response was received.</summary>
1595     </member>
1596     <member name="F:System.Net.WebExceptionStatus.ProtocolError">
1597       <summary>The response received from the server was complete but indicated a protocol-level error. For example, an HTTP protocol error such as 401 Access Denied would use this status.</summary>
1598     </member>
1599     <member name="F:System.Net.WebExceptionStatus.ProxyNameResolutionFailure">
1600       <summary>The name resolver service could not resolve the proxy host name.</summary>
1601     </member>
1602     <member name="F:System.Net.WebExceptionStatus.ReceiveFailure">
1603       <summary>A complete response was not received from the remote server.</summary>
1604     </member>
1605     <member name="F:System.Net.WebExceptionStatus.RequestCanceled">
1606       <summary>The request was canceled, the <see cref="M:System.Net.WebRequest.Abort" /> method was called, or an unclassifiable error occurred. This is the default value for <see cref="P:System.Net.WebException.Status" />.</summary>
1607     </member>
1608     <member name="F:System.Net.WebExceptionStatus.RequestProhibitedByCachePolicy">
1609       <summary>The request was not permitted by the cache policy. In general, this occurs when a request is not cacheable and the effective policy prohibits sending the request to the server. You might receive this status if a request method implies the presence of a request body, a request method requires direct interaction with the server, or a request contains a conditional header.</summary>
1610     </member>
1611     <member name="F:System.Net.WebExceptionStatus.RequestProhibitedByProxy">
1612       <summary>This request was not permitted by the proxy.</summary>
1613     </member>
1614     <member name="F:System.Net.WebExceptionStatus.SecureChannelFailure">
1615       <summary>An error occurred while establishing a connection using SSL.</summary>
1616     </member>
1617     <member name="F:System.Net.WebExceptionStatus.SendFailure">
1618       <summary>A complete request could not be sent to the remote server.</summary>
1619     </member>
1620     <member name="F:System.Net.WebExceptionStatus.ServerProtocolViolation">
1621       <summary>The server response was not a valid HTTP response.</summary>
1622     </member>
1623     <member name="F:System.Net.WebExceptionStatus.Success">
1624       <summary>No error was encountered.</summary>
1625     </member>
1626     <member name="F:System.Net.WebExceptionStatus.Timeout">
1627       <summary>No response was received during the time-out period for a request.</summary>
1628     </member>
1629     <member name="F:System.Net.WebExceptionStatus.TrustFailure">
1630       <summary>A server certificate could not be validated.</summary>
1631     </member>
1632     <member name="F:System.Net.WebExceptionStatus.UnknownError">
1633       <summary>An exception of unknown type has occurred.</summary>
1634     </member>
1635     <member name="T:System.Net.WebRequest">
1636       <summary>Makes a request to a Uniform Resource Identifier (URI). This is an <see langword="abstract" /> class.</summary>
1637     </member>
1638     <member name="M:System.Net.WebRequest.#ctor">
1639       <summary>Initializes a new instance of the <see cref="T:System.Net.WebRequest" /> class.</summary>
1640     </member>
1641     <member name="M:System.Net.WebRequest.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1642       <summary>Initializes a new instance of the <see cref="T:System.Net.WebRequest" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
1643       <param name="serializationInfo">The information required to serialize the new <see cref="T:System.Net.WebRequest" /> instance.</param>
1644       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that indicates the source of the serialized stream associated with the new <see cref="T:System.Net.WebRequest" /> instance.</param>
1645       <exception cref="T:System.NotImplementedException">Any attempt is made to access the constructor, when the constructor is not overridden in a descendant class.</exception>
1646     </member>
1647     <member name="M:System.Net.WebRequest.Abort">
1648       <summary>Aborts the request.</summary>
1649       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1650     </member>
1651     <member name="M:System.Net.WebRequest.BeginGetRequestStream(System.AsyncCallback,System.Object)">
1652       <summary>When overridden in a descendant class, provides an asynchronous version of the <see cref="M:System.Net.WebRequest.GetRequestStream" /> method.</summary>
1653       <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
1654       <param name="state">An object containing state information for this asynchronous request.</param>
1655       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1656       <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request.</returns>
1657     </member>
1658     <member name="M:System.Net.WebRequest.BeginGetResponse(System.AsyncCallback,System.Object)">
1659       <summary>When overridden in a descendant class, begins an asynchronous request for an Internet resource.</summary>
1660       <param name="callback">The <see cref="T:System.AsyncCallback" /> delegate.</param>
1661       <param name="state">An object containing state information for this asynchronous request.</param>
1662       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1663       <returns>An <see cref="T:System.IAsyncResult" /> that references the asynchronous request.</returns>
1664     </member>
1665     <member name="M:System.Net.WebRequest.Create(System.String)">
1666       <summary>Initializes a new <see cref="T:System.Net.WebRequest" /> instance for the specified URI scheme.</summary>
1667       <param name="requestUriString">The URI that identifies the Internet resource.</param>
1668       <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="requestUriString" /> has not been registered.</exception>
1669       <exception cref="T:System.ArgumentNullException">
1670         <paramref name="requestUriString" /> is <see langword="null" />.</exception>
1671       <exception cref="T:System.Security.SecurityException">The caller does not have <see cref="T:System.Net.WebPermissionAttribute" /> permission to connect to the requested URI or a URI that the request is redirected to.</exception>
1672       <exception cref="T:System.UriFormatException">The URI specified in <paramref name="requestUriString" /> is not a valid URI.
1673
1674 Note: In .NET for Windows Store apps or the Portable Class Library, catch the base class exception, <see cref="T:System.FormatException" />, instead.</exception>
1675       <returns>A <see cref="T:System.Net.WebRequest" /> descendant for the specific URI scheme.</returns>
1676     </member>
1677     <member name="M:System.Net.WebRequest.Create(System.Uri)">
1678       <summary>Initializes a new <see cref="T:System.Net.WebRequest" /> instance for the specified URI scheme.</summary>
1679       <param name="requestUri">A <see cref="T:System.Uri" /> containing the URI of the requested resource.</param>
1680       <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="requestUri" /> is not registered.</exception>
1681       <exception cref="T:System.ArgumentNullException">
1682         <paramref name="requestUri" /> is <see langword="null" />.</exception>
1683       <exception cref="T:System.Security.SecurityException">The caller does not have <see cref="T:System.Net.WebPermissionAttribute" /> permission to connect to the requested URI or a URI that the request is redirected to.</exception>
1684       <returns>A <see cref="T:System.Net.WebRequest" /> descendant for the specified URI scheme.</returns>
1685     </member>
1686     <member name="M:System.Net.WebRequest.CreateDefault(System.Uri)">
1687       <summary>Initializes a new <see cref="T:System.Net.WebRequest" /> instance for the specified URI scheme.</summary>
1688       <param name="requestUri">A <see cref="T:System.Uri" /> containing the URI of the requested resource.</param>
1689       <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="requestUri" /> is not registered.</exception>
1690       <exception cref="T:System.ArgumentNullException">
1691         <paramref name="requestUri" /> is <see langword="null" />.</exception>
1692       <exception cref="T:System.Security.SecurityException">The caller does not have <see cref="T:System.Net.WebPermissionAttribute" /> permission to connect to the requested URI or a URI that the request is redirected to.</exception>
1693       <returns>A <see cref="T:System.Net.WebRequest" /> descendant for the specified URI scheme.</returns>
1694     </member>
1695     <member name="M:System.Net.WebRequest.CreateHttp(System.String)">
1696       <summary>Initializes a new <see cref="T:System.Net.HttpWebRequest" /> instance for the specified URI string.</summary>
1697       <param name="requestUriString">A URI string that identifies the Internet resource.</param>
1698       <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="requestUriString" /> is the http or https scheme.</exception>
1699       <exception cref="T:System.ArgumentNullException">
1700         <paramref name="requestUriString" /> is <see langword="null" />.</exception>
1701       <exception cref="T:System.Security.SecurityException">The caller does not have <see cref="T:System.Net.WebPermissionAttribute" /> permission to connect to the requested URI or a URI that the request is redirected to.</exception>
1702       <exception cref="T:System.UriFormatException">The URI specified in <paramref name="requestUriString" /> is not a valid URI.</exception>
1703       <returns>An <see cref="T:System.Net.HttpWebRequest" /> instance for the specific URI string.</returns>
1704     </member>
1705     <member name="M:System.Net.WebRequest.CreateHttp(System.Uri)">
1706       <summary>Initializes a new <see cref="T:System.Net.HttpWebRequest" /> instance for the specified URI.</summary>
1707       <param name="requestUri">A URI that identifies the Internet resource.</param>
1708       <exception cref="T:System.NotSupportedException">The request scheme specified in <paramref name="requestUri" /> is the http or https scheme.</exception>
1709       <exception cref="T:System.ArgumentNullException">
1710         <paramref name="requestUri" /> is <see langword="null" />.</exception>
1711       <exception cref="T:System.Security.SecurityException">The caller does not have <see cref="T:System.Net.WebPermissionAttribute" /> permission to connect to the requested URI or a URI that the request is redirected to.</exception>
1712       <exception cref="T:System.UriFormatException">The URI specified in <paramref name="requestUri" /> is not a valid URI.</exception>
1713       <returns>An <see cref="T:System.Net.HttpWebRequest" /> instance for the specific URI string.</returns>
1714     </member>
1715     <member name="M:System.Net.WebRequest.EndGetRequestStream(System.IAsyncResult)">
1716       <summary>When overridden in a descendant class, returns a <see cref="T:System.IO.Stream" /> for writing data to the Internet resource.</summary>
1717       <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references a pending request for a stream.</param>
1718       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1719       <returns>A <see cref="T:System.IO.Stream" /> to write data to.</returns>
1720     </member>
1721     <member name="M:System.Net.WebRequest.EndGetResponse(System.IAsyncResult)">
1722       <summary>When overridden in a descendant class, returns a <see cref="T:System.Net.WebResponse" />.</summary>
1723       <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that references a pending request for a response.</param>
1724       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1725       <returns>A <see cref="T:System.Net.WebResponse" /> that contains a response to the Internet request.</returns>
1726     </member>
1727     <member name="M:System.Net.WebRequest.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1728       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data needed to serialize the target object.</summary>
1729       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
1730       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
1731     </member>
1732     <member name="M:System.Net.WebRequest.GetRequestStream">
1733       <summary>When overridden in a descendant class, returns a <see cref="T:System.IO.Stream" /> for writing data to the Internet resource.</summary>
1734       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1735       <returns>A <see cref="T:System.IO.Stream" /> for writing data to the Internet resource.</returns>
1736     </member>
1737     <member name="M:System.Net.WebRequest.GetRequestStreamAsync">
1738       <summary>When overridden in a descendant class, returns a <see cref="T:System.IO.Stream" /> for writing data to the Internet resource as an asynchronous operation.</summary>
1739       <returns>The task object representing the asynchronous operation.</returns>
1740     </member>
1741     <member name="M:System.Net.WebRequest.GetResponse">
1742       <summary>When overridden in a descendant class, returns a response to an Internet request.</summary>
1743       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1744       <returns>A <see cref="T:System.Net.WebResponse" /> containing the response to the Internet request.</returns>
1745     </member>
1746     <member name="M:System.Net.WebRequest.GetResponseAsync">
1747       <summary>When overridden in a descendant class, returns a response to an Internet request as an asynchronous operation.</summary>
1748       <returns>The task object representing the asynchronous operation.</returns>
1749     </member>
1750     <member name="M:System.Net.WebRequest.GetSystemWebProxy">
1751       <summary>Returns a proxy configured with the Internet Explorer settings of the currently impersonated user.</summary>
1752       <returns>An <see cref="T:System.Net.IWebProxy" /> used by every call to instances of <see cref="T:System.Net.WebRequest" />.</returns>
1753     </member>
1754     <member name="M:System.Net.WebRequest.RegisterPrefix(System.String,System.Net.IWebRequestCreate)">
1755       <summary>Registers a <see cref="T:System.Net.WebRequest" /> descendant for the specified URI.</summary>
1756       <param name="prefix">The complete URI or URI prefix that the <see cref="T:System.Net.WebRequest" /> descendant services.</param>
1757       <param name="creator">The create method that the <see cref="T:System.Net.WebRequest" /> calls to create the <see cref="T:System.Net.WebRequest" /> descendant.</param>
1758       <exception cref="T:System.ArgumentNullException">
1759         <paramref name="prefix" /> is <see langword="null" />  
1760   
1761  -or-  
1762   
1763  <paramref name="creator" /> is <see langword="null" />.</exception>
1764       <returns>
1765         <see langword="true" /> if registration is successful; otherwise, <see langword="false" />.</returns>
1766     </member>
1767     <member name="M:System.Net.WebRequest.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1768       <summary>When overridden in a descendant class, populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.WebRequest" />.</summary>
1769       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" />, which holds the serialized data for the <see cref="T:System.Net.WebRequest" />.</param>
1770       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the destination of the serialized stream associated with the new <see cref="T:System.Net.WebRequest" />.</param>
1771       <exception cref="T:System.NotImplementedException">An attempt is made to serialize the object, when the interface is not overridden in a descendant class.</exception>
1772     </member>
1773     <member name="P:System.Net.WebRequest.AuthenticationLevel">
1774       <summary>Gets or sets values indicating the level of authentication and impersonation used for this request.</summary>
1775       <returns>A bitwise combination of the <see cref="T:System.Net.Security.AuthenticationLevel" /> values. The default value is <see cref="F:System.Net.Security.AuthenticationLevel.MutualAuthRequested" />.  
1776   
1777  In mutual authentication, both the client and server present credentials to establish their identity. The <see cref="F:System.Net.Security.AuthenticationLevel.MutualAuthRequired" /> and <see cref="F:System.Net.Security.AuthenticationLevel.MutualAuthRequested" /> values are relevant for Kerberos authentication. Kerberos authentication can be supported directly, or can be used if the Negotiate security protocol is used to select the actual security protocol. For more information about authentication protocols, see Internet Authentication.  
1778   
1779  To determine whether mutual authentication occurred, check the <see cref="P:System.Net.WebResponse.IsMutuallyAuthenticated" /> property.  
1780   
1781  If you specify the <see cref="F:System.Net.Security.AuthenticationLevel.MutualAuthRequired" /> authentication flag value and mutual authentication does not occur, your application will receive an <see cref="T:System.IO.IOException" /> with a <see cref="T:System.Net.ProtocolViolationException" /> inner exception indicating that mutual authentication failed.</returns>
1782     </member>
1783     <member name="P:System.Net.WebRequest.CachePolicy">
1784       <summary>Gets or sets the cache policy for this request.</summary>
1785       <returns>A <see cref="T:System.Net.Cache.RequestCachePolicy" /> object that defines a cache policy.</returns>
1786     </member>
1787     <member name="P:System.Net.WebRequest.ConnectionGroupName">
1788       <summary>When overridden in a descendant class, gets or sets the name of the connection group for the request.</summary>
1789       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1790       <returns>The name of the connection group for the request.</returns>
1791     </member>
1792     <member name="P:System.Net.WebRequest.ContentLength">
1793       <summary>When overridden in a descendant class, gets or sets the content length of the request data being sent.</summary>
1794       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1795       <returns>The number of bytes of request data being sent.</returns>
1796     </member>
1797     <member name="P:System.Net.WebRequest.ContentType">
1798       <summary>When overridden in a descendant class, gets or sets the content type of the request data being sent.</summary>
1799       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1800       <returns>The content type of the request data.</returns>
1801     </member>
1802     <member name="P:System.Net.WebRequest.Credentials">
1803       <summary>When overridden in a descendant class, gets or sets the network credentials used for authenticating the request with the Internet resource.</summary>
1804       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1805       <returns>An <see cref="T:System.Net.ICredentials" /> containing the authentication credentials associated with the request. The default is <see langword="null" />.</returns>
1806     </member>
1807     <member name="P:System.Net.WebRequest.DefaultCachePolicy">
1808       <summary>Gets or sets the default cache policy for this request.</summary>
1809       <returns>A <see cref="T:System.Net.Cache.HttpRequestCachePolicy" /> that specifies the cache policy in effect for this request when no other policy is applicable.</returns>
1810     </member>
1811     <member name="P:System.Net.WebRequest.DefaultWebProxy">
1812       <summary>Gets or sets the global HTTP proxy.</summary>
1813       <returns>An <see cref="T:System.Net.IWebProxy" /> used by every call to instances of <see cref="T:System.Net.WebRequest" />.</returns>
1814     </member>
1815     <member name="P:System.Net.WebRequest.Headers">
1816       <summary>When overridden in a descendant class, gets or sets the collection of header name/value pairs associated with the request.</summary>
1817       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1818       <returns>A <see cref="T:System.Net.WebHeaderCollection" /> containing the header name/value pairs associated with this request.</returns>
1819     </member>
1820     <member name="P:System.Net.WebRequest.ImpersonationLevel">
1821       <summary>Gets or sets the impersonation level for the current request.</summary>
1822       <returns>A <see cref="T:System.Security.Principal.TokenImpersonationLevel" /> value.</returns>
1823     </member>
1824     <member name="P:System.Net.WebRequest.Method">
1825       <summary>When overridden in a descendant class, gets or sets the protocol method to use in this request.</summary>
1826       <exception cref="T:System.NotImplementedException">If the property is not overridden in a descendant class, any attempt is made to get or set the property.</exception>
1827       <returns>The protocol method to use in this request.</returns>
1828     </member>
1829     <member name="P:System.Net.WebRequest.PreAuthenticate">
1830       <summary>When overridden in a descendant class, indicates whether to pre-authenticate the request.</summary>
1831       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1832       <returns>
1833         <see langword="true" /> to pre-authenticate; otherwise, <see langword="false" />.</returns>
1834     </member>
1835     <member name="P:System.Net.WebRequest.Proxy">
1836       <summary>When overridden in a descendant class, gets or sets the network proxy to use to access this Internet resource.</summary>
1837       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1838       <returns>The <see cref="T:System.Net.IWebProxy" /> to use to access the Internet resource.</returns>
1839     </member>
1840     <member name="P:System.Net.WebRequest.RequestUri">
1841       <summary>When overridden in a descendant class, gets the URI of the Internet resource associated with the request.</summary>
1842       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1843       <returns>A <see cref="T:System.Uri" /> representing the resource associated with the request.</returns>
1844     </member>
1845     <member name="P:System.Net.WebRequest.Timeout">
1846       <summary>Gets or sets the length of time, in milliseconds, before the request times out.</summary>
1847       <exception cref="T:System.NotImplementedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1848       <returns>The length of time, in milliseconds, until the request times out, or the value <see cref="F:System.Threading.Timeout.Infinite" /> to indicate that the request does not time out. The default value is defined by the descendant class.</returns>
1849     </member>
1850     <member name="P:System.Net.WebRequest.UseDefaultCredentials">
1851       <summary>When overridden in a descendant class, gets or sets a <see cref="T:System.Boolean" /> value that controls whether <see cref="P:System.Net.CredentialCache.DefaultCredentials" /> are sent with requests.</summary>
1852       <exception cref="T:System.InvalidOperationException">You attempted to set this property after the request was sent.</exception>
1853       <exception cref="T:System.NotImplementedException">Any attempt is made to access the property, when the property is not overridden in a descendant class.</exception>
1854       <returns>
1855         <see langword="true" /> if the default credentials are used; otherwise <see langword="false" />. The default value is <see langword="false" />.</returns>
1856     </member>
1857     <member name="T:System.Net.WebRequestMethods">
1858       <summary>Container class for <see cref="T:System.Net.WebRequestMethods.Ftp" />, <see cref="T:System.Net.WebRequestMethods.File" />, and <see cref="T:System.Net.WebRequestMethods.Http" /> classes. This class cannot be inherited.</summary>
1859     </member>
1860     <member name="T:System.Net.WebRequestMethods.File">
1861       <summary>Represents the types of file protocol methods that can be used with a FILE request. This class cannot be inherited.</summary>
1862     </member>
1863     <member name="F:System.Net.WebRequestMethods.File.DownloadFile">
1864       <summary>Represents the FILE GET protocol method that is used to retrieve a file from a specified location.</summary>
1865     </member>
1866     <member name="F:System.Net.WebRequestMethods.File.UploadFile">
1867       <summary>Represents the FILE PUT protocol method that is used to copy a file to a specified location.</summary>
1868     </member>
1869     <member name="T:System.Net.WebRequestMethods.Ftp">
1870       <summary>Represents the types of FTP protocol methods that can be used with an FTP request. This class cannot be inherited.</summary>
1871     </member>
1872     <member name="F:System.Net.WebRequestMethods.Ftp.AppendFile">
1873       <summary>Represents the FTP APPE protocol method that is used to append a file to an existing file on an FTP server.</summary>
1874     </member>
1875     <member name="F:System.Net.WebRequestMethods.Ftp.DeleteFile">
1876       <summary>Represents the FTP DELE protocol method that is used to delete a file on an FTP server.</summary>
1877     </member>
1878     <member name="F:System.Net.WebRequestMethods.Ftp.DownloadFile">
1879       <summary>Represents the FTP RETR protocol method that is used to download a file from an FTP server.</summary>
1880     </member>
1881     <member name="F:System.Net.WebRequestMethods.Ftp.GetDateTimestamp">
1882       <summary>Represents the FTP MDTM protocol method that is used to retrieve the date-time stamp from a file on an FTP server.</summary>
1883     </member>
1884     <member name="F:System.Net.WebRequestMethods.Ftp.GetFileSize">
1885       <summary>Represents the FTP SIZE protocol method that is used to retrieve the size of a file on an FTP server.</summary>
1886     </member>
1887     <member name="F:System.Net.WebRequestMethods.Ftp.ListDirectory">
1888       <summary>Represents the FTP NLIST protocol method that gets a short listing of the files on an FTP server.</summary>
1889     </member>
1890     <member name="F:System.Net.WebRequestMethods.Ftp.ListDirectoryDetails">
1891       <summary>Represents the FTP LIST protocol method that gets a detailed listing of the files on an FTP server.</summary>
1892     </member>
1893     <member name="F:System.Net.WebRequestMethods.Ftp.MakeDirectory">
1894       <summary>Represents the FTP MKD protocol method creates a directory on an FTP server.</summary>
1895     </member>
1896     <member name="F:System.Net.WebRequestMethods.Ftp.PrintWorkingDirectory">
1897       <summary>Represents the FTP PWD protocol method that prints the name of the current working directory.</summary>
1898     </member>
1899     <member name="F:System.Net.WebRequestMethods.Ftp.RemoveDirectory">
1900       <summary>Represents the FTP RMD protocol method that removes a directory.</summary>
1901     </member>
1902     <member name="F:System.Net.WebRequestMethods.Ftp.Rename">
1903       <summary>Represents the FTP RENAME protocol method that renames a directory.</summary>
1904     </member>
1905     <member name="F:System.Net.WebRequestMethods.Ftp.UploadFile">
1906       <summary>Represents the FTP STOR protocol method that uploads a file to an FTP server.</summary>
1907     </member>
1908     <member name="F:System.Net.WebRequestMethods.Ftp.UploadFileWithUniqueName">
1909       <summary>Represents the FTP STOU protocol that uploads a file with a unique name to an FTP server.</summary>
1910     </member>
1911     <member name="T:System.Net.WebRequestMethods.Http">
1912       <summary>Represents the types of HTTP protocol methods that can be used with an HTTP request.</summary>
1913     </member>
1914     <member name="F:System.Net.WebRequestMethods.Http.Connect">
1915       <summary>Represents the HTTP CONNECT protocol method that is used with a proxy that can dynamically switch to tunneling, as in the case of SSL tunneling.</summary>
1916     </member>
1917     <member name="F:System.Net.WebRequestMethods.Http.Get">
1918       <summary>Represents an HTTP GET protocol method.</summary>
1919     </member>
1920     <member name="F:System.Net.WebRequestMethods.Http.Head">
1921       <summary>Represents an HTTP HEAD protocol method. The HEAD method is identical to GET except that the server only returns message-headers in the response, without a message-body.</summary>
1922     </member>
1923     <member name="F:System.Net.WebRequestMethods.Http.MkCol">
1924       <summary>Represents an HTTP MKCOL request that creates a new collection (such as a collection of pages) at the location specified by the request-Uniform Resource Identifier (URI).</summary>
1925     </member>
1926     <member name="F:System.Net.WebRequestMethods.Http.Post">
1927       <summary>Represents an HTTP POST protocol method that is used to post a new entity as an addition to a URI.</summary>
1928     </member>
1929     <member name="F:System.Net.WebRequestMethods.Http.Put">
1930       <summary>Represents an HTTP PUT protocol method that is used to replace an entity identified by a URI.</summary>
1931     </member>
1932     <member name="T:System.Net.WebResponse">
1933       <summary>Provides a response from a Uniform Resource Identifier (URI). This is an <see langword="abstract" /> class.</summary>
1934     </member>
1935     <member name="M:System.Net.WebResponse.#ctor">
1936       <summary>Initializes a new instance of the <see cref="T:System.Net.WebResponse" /> class.</summary>
1937     </member>
1938     <member name="M:System.Net.WebResponse.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1939       <summary>Initializes a new instance of the <see cref="T:System.Net.WebResponse" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
1940       <param name="serializationInfo">An instance of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> class that contains the information required to serialize the new <see cref="T:System.Net.WebRequest" /> instance.</param>
1941       <param name="streamingContext">An instance of the <see cref="T:System.Runtime.Serialization.StreamingContext" /> class that indicates the source of the serialized stream that is associated with the new <see cref="T:System.Net.WebRequest" /> instance.</param>
1942       <exception cref="T:System.NotSupportedException">Any attempt is made to access the constructor, when the constructor is not overridden in a descendant class.</exception>
1943     </member>
1944     <member name="M:System.Net.WebResponse.Close">
1945       <summary>When overridden by a descendant class, closes the response stream.</summary>
1946       <exception cref="T:System.NotSupportedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1947     </member>
1948     <member name="M:System.Net.WebResponse.Dispose">
1949       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.WebResponse" /> object.</summary>
1950     </member>
1951     <member name="M:System.Net.WebResponse.Dispose(System.Boolean)">
1952       <summary>Releases the unmanaged resources used by the <see cref="T:System.Net.WebResponse" /> object, and optionally disposes of the managed resources.</summary>
1953       <param name="disposing">
1954         <see langword="true" /> to release both managed and unmanaged resources; <see langword="false" /> to releases only unmanaged resources.</param>
1955     </member>
1956     <member name="M:System.Net.WebResponse.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1957       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> with the data that is needed to serialize the target object.</summary>
1958       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
1959       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
1960     </member>
1961     <member name="M:System.Net.WebResponse.GetResponseStream">
1962       <summary>When overridden in a descendant class, returns the data stream from the Internet resource.</summary>
1963       <exception cref="T:System.NotSupportedException">Any attempt is made to access the method, when the method is not overridden in a descendant class.</exception>
1964       <returns>An instance of the <see cref="T:System.IO.Stream" /> class for reading data from the Internet resource.</returns>
1965     </member>
1966     <member name="M:System.Net.WebResponse.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1967       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data that is needed to serialize <see cref="T:System.Net.WebResponse" />.</summary>
1968       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> that will hold the serialized data for the <see cref="T:System.Net.WebResponse" />.</param>
1969       <param name="streamingContext">A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that contains the destination of the serialized stream that is associated with the new <see cref="T:System.Net.WebResponse" />.</param>
1970     </member>
1971     <member name="P:System.Net.WebResponse.ContentLength">
1972       <summary>When overridden in a descendant class, gets or sets the content length of data being received.</summary>
1973       <exception cref="T:System.NotSupportedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1974       <returns>The number of bytes returned from the Internet resource.</returns>
1975     </member>
1976     <member name="P:System.Net.WebResponse.ContentType">
1977       <summary>When overridden in a derived class, gets or sets the content type of the data being received.</summary>
1978       <exception cref="T:System.NotSupportedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1979       <returns>A string that contains the content type of the response.</returns>
1980     </member>
1981     <member name="P:System.Net.WebResponse.Headers">
1982       <summary>When overridden in a derived class, gets a collection of header name-value pairs associated with this request.</summary>
1983       <exception cref="T:System.NotSupportedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1984       <returns>An instance of the <see cref="T:System.Net.WebHeaderCollection" /> class that contains header values associated with this response.</returns>
1985     </member>
1986     <member name="P:System.Net.WebResponse.IsFromCache">
1987       <summary>Gets a <see cref="T:System.Boolean" /> value that indicates whether this response was obtained from the cache.</summary>
1988       <returns>
1989         <see langword="true" /> if the response was taken from the cache; otherwise, <see langword="false" />.</returns>
1990     </member>
1991     <member name="P:System.Net.WebResponse.IsMutuallyAuthenticated">
1992       <summary>Gets a <see cref="T:System.Boolean" /> value that indicates whether mutual authentication occurred.</summary>
1993       <returns>
1994         <see langword="true" /> if both client and server were authenticated; otherwise, <see langword="false" />.</returns>
1995     </member>
1996     <member name="P:System.Net.WebResponse.ResponseUri">
1997       <summary>When overridden in a derived class, gets the URI of the Internet resource that actually responded to the request.</summary>
1998       <exception cref="T:System.NotSupportedException">Any attempt is made to get or set the property, when the property is not overridden in a descendant class.</exception>
1999       <returns>An instance of the <see cref="T:System.Uri" /> class that contains the URI of the Internet resource that actually responded to the request.</returns>
2000     </member>
2001     <member name="P:System.Net.WebResponse.SupportsHeaders">
2002       <summary>Gets a value that indicates if headers are supported.</summary>
2003       <returns>Returns <see cref="T:System.Boolean" />.  
2004   
2005  <see langword="true" /> if headers are supported; otherwise, <see langword="false" />.</returns>
2006     </member>
2007   </members>
2008 </doc>