Revert "[TFM] Update TizenFX TFM to net6.0 (#5360)" (#5436)
[platform/core/csapi/tizenfx.git] / pkg / Tizen.NET.API11 / build / tizen11.0 / ref / System.Net.Primitives.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <doc>
3   <assembly>
4     <name>System.Net.Primitives</name>
5   </assembly>
6   <members>
7     <member name="T:System.Net.AuthenticationSchemes">
8       <summary>Specifies protocols for authentication.</summary>
9     </member>
10     <member name="F:System.Net.AuthenticationSchemes.Anonymous">
11       <summary>Specifies anonymous authentication.</summary>
12     </member>
13     <member name="F:System.Net.AuthenticationSchemes.Basic">
14       <summary>Specifies basic authentication.</summary>
15     </member>
16     <member name="F:System.Net.AuthenticationSchemes.Digest">
17       <summary>Specifies digest authentication.</summary>
18     </member>
19     <member name="F:System.Net.AuthenticationSchemes.IntegratedWindowsAuthentication">
20       <summary>Specifies Windows authentication.</summary>
21     </member>
22     <member name="F:System.Net.AuthenticationSchemes.Negotiate">
23       <summary>Negotiates with the client to determine the authentication scheme. If both client and server support Kerberos, it is used; otherwise, NTLM is used.</summary>
24     </member>
25     <member name="F:System.Net.AuthenticationSchemes.None">
26       <summary>No authentication is allowed. A client requesting an <see cref="T:System.Net.HttpListener" /> object with this flag set will always receive a 403 Forbidden status. Use this flag when a resource should never be served to a client.</summary>
27     </member>
28     <member name="F:System.Net.AuthenticationSchemes.Ntlm">
29       <summary>Specifies NTLM authentication.</summary>
30     </member>
31     <member name="T:System.Net.Cache.RequestCacheLevel">
32       <summary>Specifies caching behavior for resources obtained using <see cref="T:System.Net.WebRequest" /> and its derived classes.</summary>
33     </member>
34     <member name="F:System.Net.Cache.RequestCacheLevel.BypassCache">
35       <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. This is the default cache behavior specified in the machine configuration file that ships with the .NET Framework.</summary>
36     </member>
37     <member name="F:System.Net.Cache.RequestCacheLevel.CacheIfAvailable">
38       <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>
39     </member>
40     <member name="F:System.Net.Cache.RequestCacheLevel.CacheOnly">
41       <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>
42     </member>
43     <member name="F:System.Net.Cache.RequestCacheLevel.Default">
44       <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>
45     </member>
46     <member name="F:System.Net.Cache.RequestCacheLevel.NoCacheNoStore">
47       <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 <see langword="no-cache" /> cache control directive.</summary>
48     </member>
49     <member name="F:System.Net.Cache.RequestCacheLevel.Reload">
50       <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 <see langword="no-cache" /> cache control directive and the no-cache <see langword="Pragma" /> header.</summary>
51     </member>
52     <member name="F:System.Net.Cache.RequestCacheLevel.Revalidate">
53       <summary>Satisfies a request by using the cached copy of the resource if the timestamp is the same as the timestamp of the resource on the server; otherwise, the resource is downloaded from the server, presented to the caller, and stored in the cache.</summary>
54     </member>
55     <member name="T:System.Net.Cache.RequestCachePolicy">
56       <summary>Defines an application's caching requirements for resources obtained by using <see cref="T:System.Net.WebRequest" /> objects.</summary>
57     </member>
58     <member name="M:System.Net.Cache.RequestCachePolicy.#ctor">
59       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.RequestCachePolicy" /> class.</summary>
60     </member>
61     <member name="M:System.Net.Cache.RequestCachePolicy.#ctor(System.Net.Cache.RequestCacheLevel)">
62       <summary>Initializes a new instance of the <see cref="T:System.Net.Cache.RequestCachePolicy" /> class. using the specified cache policy.</summary>
63       <param name="level">A <see cref="T:System.Net.Cache.RequestCacheLevel" /> that specifies the cache behavior for resources obtained using <see cref="T:System.Net.WebRequest" /> objects.</param>
64       <exception cref="T:System.ArgumentOutOfRangeException">level is not a valid <see cref="T:System.Net.Cache.RequestCacheLevel" />.value.</exception>
65     </member>
66     <member name="P:System.Net.Cache.RequestCachePolicy.Level">
67       <summary>Gets the <see cref="T:System.Net.Cache.RequestCacheLevel" /> value specified when this instance was constructed.</summary>
68       <returns>A <see cref="T:System.Net.Cache.RequestCacheLevel" /> value that specifies the cache behavior for resources obtained using <see cref="T:System.Net.WebRequest" /> objects.</returns>
69     </member>
70     <member name="M:System.Net.Cache.RequestCachePolicy.ToString">
71       <summary>Returns a string representation of this instance.</summary>
72       <returns>A <see cref="T:System.String" /> containing the <see cref="P:System.Net.Cache.RequestCachePolicy.Level" /> for this instance.</returns>
73     </member>
74     <member name="T:System.Net.Cookie">
75       <summary>Provides a set of properties and methods that are used to manage cookies. This class cannot be inherited.</summary>
76     </member>
77     <member name="M:System.Net.Cookie.#ctor">
78       <summary>Initializes a new instance of the <see cref="T:System.Net.Cookie" /> class.</summary>
79     </member>
80     <member name="M:System.Net.Cookie.#ctor(System.String,System.String)">
81       <summary>Initializes a new instance of the <see cref="T:System.Net.Cookie" /> class with a specified <see cref="P:System.Net.Cookie.Name" /> and <see cref="P:System.Net.Cookie.Value" />.</summary>
82       <param name="name">The name of a <see cref="T:System.Net.Cookie" />. The following characters must not be used inside <paramref name="name" />: equal sign, semicolon, comma, newline (\n), return (\r), tab (\t), and space character. The dollar sign character ("$") cannot be the first character.</param>
83       <param name="value">The value of a <see cref="T:System.Net.Cookie" />. The following characters must not be used inside <paramref name="value" />: semicolon, comma.</param>
84       <exception cref="T:System.Net.CookieException">The <paramref name="name" /> parameter is <see langword="null" />.
85 -or-
86 The <paramref name="name" /> parameter is of zero length.
87 -or-
88 The <paramref name="name" /> parameter contains an invalid character.
89 -or-
90 The <paramref name="value" /> parameter is <see langword="null" /> .
91 -or -
92 The <paramref name="value" /> parameter contains a string not enclosed in quotes that contains an invalid character.</exception>
93     </member>
94     <member name="M:System.Net.Cookie.#ctor(System.String,System.String,System.String)">
95       <summary>Initializes a new instance of the <see cref="T:System.Net.Cookie" /> class with a specified <see cref="P:System.Net.Cookie.Name" />, <see cref="P:System.Net.Cookie.Value" />, and <see cref="P:System.Net.Cookie.Path" />.</summary>
96       <param name="name">The name of a <see cref="T:System.Net.Cookie" />. The following characters must not be used inside <paramref name="name" />: equal sign, semicolon, comma, newline (\n), return (\r), tab (\t), and space character. The dollar sign character ("$") cannot be the first character.</param>
97       <param name="value">The value of a <see cref="T:System.Net.Cookie" />. The following characters must not be used inside <paramref name="value" />: semicolon, comma.</param>
98       <param name="path">The subset of URIs on the origin server to which this <see cref="T:System.Net.Cookie" /> applies. The default value is "/".</param>
99       <exception cref="T:System.Net.CookieException">The <paramref name="name" /> parameter is <see langword="null" />.
100 -or-
101 The <paramref name="name" /> parameter is of zero length.
102 -or-
103 The <paramref name="name" /> parameter contains an invalid character.
104 -or-
105 The <paramref name="value" /> parameter is <see langword="null" /> .
106 -or -
107 The <paramref name="value" /> parameter contains a string not enclosed in quotes that contains an invalid character.</exception>
108     </member>
109     <member name="M:System.Net.Cookie.#ctor(System.String,System.String,System.String,System.String)">
110       <summary>Initializes a new instance of the <see cref="T:System.Net.Cookie" /> class with a specified <see cref="P:System.Net.Cookie.Name" />, <see cref="P:System.Net.Cookie.Value" />, <see cref="P:System.Net.Cookie.Path" />, and <see cref="P:System.Net.Cookie.Domain" />.</summary>
111       <param name="name">The name of a <see cref="T:System.Net.Cookie" />. The following characters must not be used inside <paramref name="name" />: equal sign, semicolon, comma, newline (\n), return (\r), tab (\t), and space character. The dollar sign character ("$") cannot be the first character.</param>
112       <param name="value">The value of a <see cref="T:System.Net.Cookie" /> object. The following characters must not be used inside <paramref name="value" />: semicolon, comma.</param>
113       <param name="path">The subset of URIs on the origin server to which this <see cref="T:System.Net.Cookie" /> applies. The default value is "/".</param>
114       <param name="domain">The optional internet domain for which this <see cref="T:System.Net.Cookie" /> is valid. The default value is the host this <see cref="T:System.Net.Cookie" /> has been received from.</param>
115       <exception cref="T:System.Net.CookieException">The <paramref name="name" /> parameter is <see langword="null" />.
116 -or-
117 The <paramref name="name" /> parameter is of zero length.
118 -or-
119 The <paramref name="name" /> parameter contains an invalid character.
120 -or-
121 The <paramref name="value" /> parameter is <see langword="null" /> .
122 -or -
123 The <paramref name="value" /> parameter contains a string not enclosed in quotes that contains an invalid character.</exception>
124     </member>
125     <member name="P:System.Net.Cookie.Comment">
126       <summary>Gets or sets a comment that the server can add to a <see cref="T:System.Net.Cookie" />.</summary>
127       <returns>An optional comment to document intended usage for this <see cref="T:System.Net.Cookie" />.</returns>
128     </member>
129     <member name="P:System.Net.Cookie.CommentUri">
130       <summary>Gets or sets a URI comment that the server can provide with a <see cref="T:System.Net.Cookie" />.</summary>
131       <returns>An optional comment that represents the intended usage of the URI reference for this <see cref="T:System.Net.Cookie" />. The value must conform to URI format.</returns>
132     </member>
133     <member name="P:System.Net.Cookie.Discard">
134       <summary>Gets or sets the discard flag set by the server.</summary>
135       <returns>
136         <see langword="true" /> if the client is to discard the <see cref="T:System.Net.Cookie" /> at the end of the current session; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
137     </member>
138     <member name="P:System.Net.Cookie.Domain">
139       <summary>Gets or sets the URI for which the <see cref="T:System.Net.Cookie" /> is valid.</summary>
140       <returns>The URI for which the <see cref="T:System.Net.Cookie" /> is valid.</returns>
141     </member>
142     <member name="M:System.Net.Cookie.Equals(System.Object)">
143       <summary>Overrides the <see cref="M:System.Object.Equals(System.Object)" /> method.</summary>
144       <param name="comparand">A reference to a <see cref="T:System.Net.Cookie" />.</param>
145       <returns>Returns <see langword="true" /> if the <see cref="T:System.Net.Cookie" /> is equal to <paramref name="comparand" />. Two <see cref="T:System.Net.Cookie" /> instances are equal if their <see cref="P:System.Net.Cookie.Name" />, <see cref="P:System.Net.Cookie.Value" />, <see cref="P:System.Net.Cookie.Path" />, <see cref="P:System.Net.Cookie.Domain" />, and <see cref="P:System.Net.Cookie.Version" /> properties are equal. <see cref="P:System.Net.Cookie.Name" /> and <see cref="P:System.Net.Cookie.Domain" /> string comparisons are case-insensitive.</returns>
146     </member>
147     <member name="P:System.Net.Cookie.Expired">
148       <summary>Gets or sets the current state of the <see cref="T:System.Net.Cookie" />.</summary>
149       <returns>
150         <see langword="true" /> if the <see cref="T:System.Net.Cookie" /> has expired; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
151     </member>
152     <member name="P:System.Net.Cookie.Expires">
153       <summary>Gets or sets the expiration date and time for the <see cref="T:System.Net.Cookie" /> as a <see cref="T:System.DateTime" />.</summary>
154       <returns>The expiration date and time for the <see cref="T:System.Net.Cookie" /> as a <see cref="T:System.DateTime" /> instance.</returns>
155     </member>
156     <member name="M:System.Net.Cookie.GetHashCode">
157       <summary>Overrides the <see cref="M:System.Object.GetHashCode" /> method.</summary>
158       <returns>The 32-bit signed integer hash code for this instance.</returns>
159     </member>
160     <member name="P:System.Net.Cookie.HttpOnly">
161       <summary>Determines whether a page script or other active content can access this cookie.</summary>
162       <returns>Boolean value that determines whether a page script or other active content can access this cookie.</returns>
163     </member>
164     <member name="P:System.Net.Cookie.Name">
165       <summary>Gets or sets the name for the <see cref="T:System.Net.Cookie" />.</summary>
166       <returns>The name for the <see cref="T:System.Net.Cookie" />.</returns>
167       <exception cref="T:System.Net.CookieException">The value specified for a set operation is <see langword="null" /> or the empty string
168 -or-
169 The value specified for a set operation contained an illegal character. The following characters must not be used inside the <see cref="P:System.Net.Cookie.Name" /> property: equal sign, semicolon, comma, newline (\n), return (\r), tab (\t), and space character. The dollar sign character ("$") cannot be the first character.</exception>
170     </member>
171     <member name="P:System.Net.Cookie.Path">
172       <summary>Gets or sets the URIs to which the <see cref="T:System.Net.Cookie" /> applies.</summary>
173       <returns>The URIs to which the <see cref="T:System.Net.Cookie" /> applies.</returns>
174     </member>
175     <member name="P:System.Net.Cookie.Port">
176       <summary>Gets or sets a list of TCP ports that the <see cref="T:System.Net.Cookie" /> applies to.</summary>
177       <returns>The list of TCP ports that the <see cref="T:System.Net.Cookie" /> applies to.</returns>
178       <exception cref="T:System.Net.CookieException">The value specified for a set operation could not be parsed or is not enclosed in double quotes.</exception>
179     </member>
180     <member name="P:System.Net.Cookie.Secure">
181       <summary>Gets or sets the security level of a <see cref="T:System.Net.Cookie" />.</summary>
182       <returns>
183         <see langword="true" /> if the client is only to return the cookie in subsequent requests if those requests use Secure Hypertext Transfer Protocol (HTTPS); otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
184     </member>
185     <member name="P:System.Net.Cookie.TimeStamp">
186       <summary>Gets the time when the cookie was issued as a <see cref="T:System.DateTime" />.</summary>
187       <returns>The time when the cookie was issued as a <see cref="T:System.DateTime" />.</returns>
188     </member>
189     <member name="M:System.Net.Cookie.ToString">
190       <summary>Overrides the <see cref="M:System.Object.ToString" /> method.</summary>
191       <returns>Returns a string representation of this <see cref="T:System.Net.Cookie" /> object that is suitable for including in a HTTP Cookie: request header.</returns>
192     </member>
193     <member name="P:System.Net.Cookie.Value">
194       <summary>Gets or sets the <see cref="P:System.Net.Cookie.Value" /> for the <see cref="T:System.Net.Cookie" />.</summary>
195       <returns>The <see cref="P:System.Net.Cookie.Value" /> for the <see cref="T:System.Net.Cookie" />.</returns>
196     </member>
197     <member name="P:System.Net.Cookie.Version">
198       <summary>Gets or sets the version of HTTP state maintenance to which the cookie conforms.</summary>
199       <returns>The version of HTTP state maintenance to which the cookie conforms.</returns>
200       <exception cref="T:System.ArgumentOutOfRangeException">The value specified for a version is not allowed.</exception>
201     </member>
202     <member name="T:System.Net.CookieCollection">
203       <summary>Provides a collection container for instances of the <see cref="T:System.Net.Cookie" /> class.</summary>
204     </member>
205     <member name="M:System.Net.CookieCollection.#ctor">
206       <summary>Initializes a new instance of the <see cref="T:System.Net.CookieCollection" /> class.</summary>
207     </member>
208     <member name="M:System.Net.CookieCollection.Add(System.Net.Cookie)">
209       <summary>Adds a <see cref="T:System.Net.Cookie" /> to a <see cref="T:System.Net.CookieCollection" />.</summary>
210       <param name="cookie">The <see cref="T:System.Net.Cookie" /> to be added to a <see cref="T:System.Net.CookieCollection" />.</param>
211       <exception cref="T:System.ArgumentNullException">
212         <paramref name="cookie" /> is <see langword="null" />.</exception>
213     </member>
214     <member name="M:System.Net.CookieCollection.Add(System.Net.CookieCollection)">
215       <summary>Adds the contents of a <see cref="T:System.Net.CookieCollection" /> to the current instance.</summary>
216       <param name="cookies">The <see cref="T:System.Net.CookieCollection" /> to be added.</param>
217       <exception cref="T:System.ArgumentNullException">
218         <paramref name="cookies" /> is <see langword="null" />.</exception>
219     </member>
220     <member name="M:System.Net.CookieCollection.Clear">
221       <summary>Removes all elements from the <see cref="T:System.Net.CookieCollection" /> object.</summary>
222     </member>
223     <member name="M:System.Net.CookieCollection.Contains(System.Net.Cookie)">
224       <summary>Determines whether the specified cookie is in the <see cref="T:System.Net.CookieCollection" />.</summary>
225       <param name="cookie">The cookie to locate in the <see cref="T:System.Net.CookieCollection" />.</param>
226       <returns>
227         <see langword="true" /> if the specified cookie is found in the <see cref="T:System.Net.CookieCollection" />; otherwise, <see langword="false" />.</returns>
228     </member>
229     <member name="M:System.Net.CookieCollection.CopyTo(System.Array,System.Int32)">
230       <summary>Copies the elements of a <see cref="T:System.Net.CookieCollection" /> to the specified array, starting at a particular index.</summary>
231       <param name="array">The target array to which the <see cref="T:System.Net.CookieCollection" /> will be copied.</param>
232       <param name="index">The zero-based index in the target array where copying begins.</param>
233       <exception cref="T:System.ArgumentNullException">
234         <paramref name="array" /> is <see langword="null" />.</exception>
235       <exception cref="T:System.ArgumentOutOfRangeException">
236         <paramref name="index" /> is less than zero.</exception>
237       <exception cref="T:System.ArgumentException">
238         <paramref name="array" /> is multidimensional.
239 -or-
240 The number of elements in this <see cref="T:System.Net.CookieCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
241       <exception cref="T:System.InvalidCastException">The elements in this <see cref="T:System.Net.CookieCollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
242     </member>
243     <member name="M:System.Net.CookieCollection.CopyTo(System.Net.Cookie[],System.Int32)">
244       <summary>Copies the elements of this <see cref="T:System.Net.CookieCollection" /> to a <see cref="T:System.Net.Cookie" /> array starting at the specified index of the target array.</summary>
245       <param name="array">The target <see cref="T:System.Net.Cookie" /> array to which the <see cref="T:System.Net.CookieCollection" /> will be copied.</param>
246       <param name="index">The zero-based index in the target array where copying begins.</param>
247       <exception cref="T:System.ArgumentNullException">
248         <paramref name="array" /> is <see langword="null" />.</exception>
249       <exception cref="T:System.ArgumentOutOfRangeException">
250         <paramref name="index" /> is less than zero.</exception>
251       <exception cref="T:System.ArgumentException">
252         <paramref name="array" /> is multidimensional.
253 -or-
254 The number of elements in this <see cref="T:System.Net.CookieCollection" /> is greater than the available space from <paramref name="index" /> to the end of the destination <paramref name="array" />.</exception>
255       <exception cref="T:System.InvalidCastException">The elements in this <see cref="T:System.Net.CookieCollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
256     </member>
257     <member name="P:System.Net.CookieCollection.Count">
258       <summary>Gets the number of cookies contained in a <see cref="T:System.Net.CookieCollection" />.</summary>
259       <returns>The number of cookies contained in a <see cref="T:System.Net.CookieCollection" />.</returns>
260     </member>
261     <member name="M:System.Net.CookieCollection.GetEnumerator">
262       <summary>Gets an enumerator that can iterate through a <see cref="T:System.Net.CookieCollection" />.</summary>
263       <returns>An <see cref="T:System.Collections.IEnumerator" /> for this collection.</returns>
264     </member>
265     <member name="P:System.Net.CookieCollection.IsReadOnly">
266       <summary>Gets a value that indicates whether a <see cref="T:System.Net.CookieCollection" /> is read-only.</summary>
267       <returns>
268         <see langword="true" /> if this is a read-only <see cref="T:System.Net.CookieCollection" />; otherwise, <see langword="false" />. The default is <see langword="true" />.</returns>
269     </member>
270     <member name="P:System.Net.CookieCollection.IsSynchronized">
271       <summary>Gets a value that indicates whether access to a <see cref="T:System.Net.CookieCollection" /> is thread safe.</summary>
272       <returns>
273         <see langword="true" /> if access to the <see cref="T:System.Net.CookieCollection" /> is thread safe; otherwise, <see langword="false" />. The default is <see langword="false" />.</returns>
274     </member>
275     <member name="P:System.Net.CookieCollection.Item(System.Int32)">
276       <summary>Gets the <see cref="T:System.Net.Cookie" /> with a specific index from a <see cref="T:System.Net.CookieCollection" />.</summary>
277       <param name="index">The zero-based index of the <see cref="T:System.Net.Cookie" /> to be found.</param>
278       <returns>A <see cref="T:System.Net.Cookie" /> with a specific index from a <see cref="T:System.Net.CookieCollection" />.</returns>
279       <exception cref="T:System.ArgumentOutOfRangeException">
280         <paramref name="index" /> is less than 0 or <paramref name="index" /> is greater than or equal to <see cref="P:System.Net.CookieCollection.Count" />.</exception>
281     </member>
282     <member name="P:System.Net.CookieCollection.Item(System.String)">
283       <summary>Gets the <see cref="T:System.Net.Cookie" /> with a specific name from a <see cref="T:System.Net.CookieCollection" />.</summary>
284       <param name="name">The name of the <see cref="T:System.Net.Cookie" /> to be found.</param>
285       <returns>The <see cref="T:System.Net.Cookie" /> with a specific name from a <see cref="T:System.Net.CookieCollection" />.</returns>
286       <exception cref="T:System.ArgumentNullException">
287         <paramref name="name" /> is <see langword="null" />.</exception>
288     </member>
289     <member name="M:System.Net.CookieCollection.Remove(System.Net.Cookie)">
290       <summary>Removes the specified cookie from the <see cref="T:System.Net.CookieCollection" />.</summary>
291       <param name="cookie">The cookie to remove from the <see cref="T:System.Net.CookieCollection" />.</param>
292       <returns>
293         <see langword="true" /> if <paramref name="cookie" /> was successfully removed from the <see cref="T:System.Net.CookieCollection" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if item is not found in the original collection.</returns>
294     </member>
295     <member name="P:System.Net.CookieCollection.SyncRoot">
296       <summary>Gets an object to synchronize access to the <see cref="T:System.Net.CookieCollection" />.</summary>
297       <returns>An object to synchronize access to the <see cref="T:System.Net.CookieCollection" />.</returns>
298     </member>
299     <member name="M:System.Net.CookieCollection.System#Collections#Generic#IEnumerable{System#Net#Cookie}#GetEnumerator">
300       <summary>Gets an enumerator that can iterate through the <see cref="T:System.Net.CookieCollection" />.</summary>
301       <returns>An <see cref="T:System.Collections.Generic.IEnumerator`1" /> for this collection.</returns>
302     </member>
303     <member name="T:System.Net.CookieContainer">
304       <summary>Provides a container for a collection of <see cref="T:System.Net.CookieCollection" /> objects.</summary>
305     </member>
306     <member name="M:System.Net.CookieContainer.#ctor">
307       <summary>Initializes a new instance of the <see cref="T:System.Net.CookieContainer" /> class.</summary>
308     </member>
309     <member name="M:System.Net.CookieContainer.#ctor(System.Int32)">
310       <summary>Initializes a new instance of the <see cref="T:System.Net.CookieContainer" /> class with a specified value for the number of <see cref="T:System.Net.Cookie" /> instances that the container can hold.</summary>
311       <param name="capacity">The number of <see cref="T:System.Net.Cookie" /> instances that the <see cref="T:System.Net.CookieContainer" /> can hold.</param>
312       <exception cref="T:System.ArgumentException">
313         <paramref name="capacity" /> is less than or equal to zero.</exception>
314     </member>
315     <member name="M:System.Net.CookieContainer.#ctor(System.Int32,System.Int32,System.Int32)">
316       <summary>Initializes a new instance of the <see cref="T:System.Net.CookieContainer" /> class with specific properties.</summary>
317       <param name="capacity">The number of <see cref="T:System.Net.Cookie" /> instances that the <see cref="T:System.Net.CookieContainer" /> can hold.</param>
318       <param name="perDomainCapacity">The number of <see cref="T:System.Net.Cookie" /> instances per domain.</param>
319       <param name="maxCookieSize">The maximum size in bytes for any single <see cref="T:System.Net.Cookie" /> in a <see cref="T:System.Net.CookieContainer" />.</param>
320       <exception cref="T:System.ArgumentOutOfRangeException">
321         <paramref name="perDomainCapacity" /> is not equal to <see cref="F:System.Int32.MaxValue" />.
322 and
323 <paramref name="(perDomainCapacity" /> is less than or equal to zero or <paramref name="perDomainCapacity" /> is greater than <paramref name="capacity)" />.</exception>
324       <exception cref="T:System.ArgumentException">
325         <paramref name="maxCookieSize" /> is less than or equal to zero.</exception>
326     </member>
327     <member name="M:System.Net.CookieContainer.Add(System.Net.Cookie)">
328       <summary>Adds a <see cref="T:System.Net.Cookie" /> to a <see cref="T:System.Net.CookieContainer" />. This method uses the domain from the <see cref="T:System.Net.Cookie" /> to determine which domain collection to associate the <see cref="T:System.Net.Cookie" /> with.</summary>
329       <param name="cookie">The <see cref="T:System.Net.Cookie" /> to be added to the <see cref="T:System.Net.CookieContainer" />.</param>
330       <exception cref="T:System.ArgumentNullException">
331         <paramref name="cookie" /> is <see langword="null" />.</exception>
332       <exception cref="T:System.ArgumentException">The domain for <paramref name="cookie" /> is <see langword="null" /> or the empty string ("").</exception>
333       <exception cref="T:System.Net.CookieException">
334         <paramref name="cookie" /> is larger than <paramref name="maxCookieSize" />.
335 -or-
336 the domain for <paramref name="cookie" /> is not a valid URI.</exception>
337     </member>
338     <member name="M:System.Net.CookieContainer.Add(System.Net.CookieCollection)">
339       <summary>Adds the contents of a <see cref="T:System.Net.CookieCollection" /> to the <see cref="T:System.Net.CookieContainer" />.</summary>
340       <param name="cookies">The <see cref="T:System.Net.CookieCollection" /> to be added to the <see cref="T:System.Net.CookieContainer" />.</param>
341       <exception cref="T:System.ArgumentNullException">
342         <paramref name="cookies" /> is <see langword="null" />.</exception>
343     </member>
344     <member name="M:System.Net.CookieContainer.Add(System.Uri,System.Net.Cookie)">
345       <summary>Adds a <see cref="T:System.Net.Cookie" /> to the <see cref="T:System.Net.CookieContainer" /> for a particular URI.</summary>
346       <param name="uri">The URI of the <see cref="T:System.Net.Cookie" /> to be added to the <see cref="T:System.Net.CookieContainer" />.</param>
347       <param name="cookie">The <see cref="T:System.Net.Cookie" /> to be added to the <see cref="T:System.Net.CookieContainer" />.</param>
348       <exception cref="T:System.ArgumentNullException">
349         <paramref name="uri" /> is <see langword="null" /> or <paramref name="cookie" /> is <see langword="null" />.</exception>
350       <exception cref="T:System.Net.CookieException">
351         <paramref name="cookie" /> is larger than <paramref name="maxCookieSize" />.
352 -or-
353 The domain for <paramref name="cookie" /> is not a valid URI.</exception>
354     </member>
355     <member name="M:System.Net.CookieContainer.Add(System.Uri,System.Net.CookieCollection)">
356       <summary>Adds the contents of a <see cref="T:System.Net.CookieCollection" /> to the <see cref="T:System.Net.CookieContainer" /> for a particular URI.</summary>
357       <param name="uri">The URI of the <see cref="T:System.Net.CookieCollection" /> to be added to the <see cref="T:System.Net.CookieContainer" />.</param>
358       <param name="cookies">The <see cref="T:System.Net.CookieCollection" /> to be added to the <see cref="T:System.Net.CookieContainer" />.</param>
359       <exception cref="T:System.ArgumentNullException">
360         <paramref name="cookies" /> is <see langword="null" />.</exception>
361       <exception cref="T:System.ArgumentException">The domain for one of the cookies in <paramref name="cookies" /> is <see langword="null" />.</exception>
362       <exception cref="T:System.Net.CookieException">One of the cookies in <paramref name="cookies" /> contains an invalid domain.</exception>
363     </member>
364     <member name="P:System.Net.CookieContainer.Capacity">
365       <summary>Gets or sets the number of <see cref="T:System.Net.Cookie" /> instances that a <see cref="T:System.Net.CookieContainer" /> can hold.</summary>
366       <returns>The number of <see cref="T:System.Net.Cookie" /> instances that a <see cref="T:System.Net.CookieContainer" /> can hold. This is a hard limit and cannot be exceeded by adding a <see cref="T:System.Net.Cookie" />.</returns>
367       <exception cref="T:System.ArgumentOutOfRangeException">
368         <paramref name="Capacity" /> is less than or equal to zero or (value is less than <see cref="P:System.Net.CookieContainer.PerDomainCapacity" /> and <see cref="P:System.Net.CookieContainer.PerDomainCapacity" /> is not equal to <see cref="F:System.Int32.MaxValue" />).</exception>
369     </member>
370     <member name="P:System.Net.CookieContainer.Count">
371       <summary>Gets the number of <see cref="T:System.Net.Cookie" /> instances that a <see cref="T:System.Net.CookieContainer" /> currently holds.</summary>
372       <returns>The number of <see cref="T:System.Net.Cookie" /> instances that a <see cref="T:System.Net.CookieContainer" /> currently holds. This is the total of <see cref="T:System.Net.Cookie" /> instances in all domains.</returns>
373     </member>
374     <member name="F:System.Net.CookieContainer.DefaultCookieLengthLimit">
375       <summary>Represents the default maximum size, in bytes, of the <see cref="T:System.Net.Cookie" /> instances that the <see cref="T:System.Net.CookieContainer" /> can hold. This field is constant.</summary>
376     </member>
377     <member name="F:System.Net.CookieContainer.DefaultCookieLimit">
378       <summary>Represents the default maximum number of <see cref="T:System.Net.Cookie" /> instances that the <see cref="T:System.Net.CookieContainer" /> can hold. This field is constant.</summary>
379     </member>
380     <member name="F:System.Net.CookieContainer.DefaultPerDomainCookieLimit">
381       <summary>Represents the default maximum number of <see cref="T:System.Net.Cookie" /> instances that the <see cref="T:System.Net.CookieContainer" /> can reference per domain. This field is constant.</summary>
382     </member>
383     <member name="M:System.Net.CookieContainer.GetCookieHeader(System.Uri)">
384       <summary>Gets the HTTP cookie header that contains the HTTP cookies that represent the <see cref="T:System.Net.Cookie" /> instances that are associated with a specific URI.</summary>
385       <param name="uri">The URI of the <see cref="T:System.Net.Cookie" /> instances desired.</param>
386       <returns>An HTTP cookie header, with strings representing <see cref="T:System.Net.Cookie" /> instances delimited by semicolons.</returns>
387       <exception cref="T:System.ArgumentNullException">
388         <paramref name="uri" /> is <see langword="null" />.</exception>
389     </member>
390     <member name="M:System.Net.CookieContainer.GetCookies(System.Uri)">
391       <summary>Gets a <see cref="T:System.Net.CookieCollection" /> that contains the <see cref="T:System.Net.Cookie" /> instances that are associated with a specific URI.</summary>
392       <param name="uri">The URI of the <see cref="T:System.Net.Cookie" /> instances desired.</param>
393       <returns>A <see cref="T:System.Net.CookieCollection" /> that contains the <see cref="T:System.Net.Cookie" /> instances that are associated with a specific URI.</returns>
394       <exception cref="T:System.ArgumentNullException">
395         <paramref name="uri" /> is <see langword="null" />.</exception>
396     </member>
397     <member name="P:System.Net.CookieContainer.MaxCookieSize">
398       <summary>Represents the maximum allowed length of a <see cref="T:System.Net.Cookie" />.</summary>
399       <returns>The maximum allowed length, in bytes, of a <see cref="T:System.Net.Cookie" />.</returns>
400       <exception cref="T:System.ArgumentOutOfRangeException">
401         <paramref name="MaxCookieSize" /> is less than or equal to zero.</exception>
402     </member>
403     <member name="P:System.Net.CookieContainer.PerDomainCapacity">
404       <summary>Gets or sets the number of <see cref="T:System.Net.Cookie" /> instances that a <see cref="T:System.Net.CookieContainer" /> can hold per domain.</summary>
405       <returns>The number of <see cref="T:System.Net.Cookie" /> instances that are allowed per domain.</returns>
406       <exception cref="T:System.ArgumentOutOfRangeException">
407         <paramref name="PerDomainCapacity" /> is less than or equal to zero.
408 -or-
409 <paramref name="(PerDomainCapacity" /> is greater than the maximum allowable number of cookies instances, 300, and is not equal to <see cref="F:System.Int32.MaxValue" />).</exception>
410     </member>
411     <member name="M:System.Net.CookieContainer.SetCookies(System.Uri,System.String)">
412       <summary>Adds <see cref="T:System.Net.Cookie" /> instances for one or more cookies from an HTTP cookie header to the <see cref="T:System.Net.CookieContainer" /> for a specific URI.</summary>
413       <param name="uri">The URI of the <see cref="T:System.Net.CookieCollection" />.</param>
414       <param name="cookieHeader">The contents of an HTTP set-cookie header as returned by a HTTP server, with <see cref="T:System.Net.Cookie" /> instances delimited by commas.</param>
415       <exception cref="T:System.ArgumentNullException">
416         <paramref name="uri" /> or <paramref name="cookieHeader" /> is <see langword="null" />.</exception>
417       <exception cref="T:System.Net.CookieException">One of the cookies is invalid.
418 -or-
419 An error occurred while adding one of the cookies to the container.</exception>
420     </member>
421     <member name="T:System.Net.CookieException">
422       <summary>The exception that is thrown when an error is made adding a <see cref="T:System.Net.Cookie" /> to a <see cref="T:System.Net.CookieContainer" />.</summary>
423     </member>
424     <member name="M:System.Net.CookieException.#ctor">
425       <summary>Initializes a new instance of the <see cref="T:System.Net.CookieException" /> class.</summary>
426     </member>
427     <member name="M:System.Net.CookieException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
428       <summary>Initializes a new instance of the <see cref="T:System.Net.CookieException" /> class with specific values of <paramref name="serializationInfo" /> and <paramref name="streamingContext" />.</summary>
429       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
430       <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
431     </member>
432     <member name="M:System.Net.CookieException.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
433       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.CookieException" />.</summary>
434       <param name="serializationInfo">The object that holds the serialized object data. The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to populate with data.</param>
435       <param name="streamingContext">The contextual information about the source or destination. A <see cref="T:System.Runtime.Serialization.StreamingContext" /> that specifies the destination for this serialization.</param>
436     </member>
437     <member name="M:System.Net.CookieException.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
438       <summary>Populates a <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance with the data needed to serialize the <see cref="T:System.Net.CookieException" />.</summary>
439       <param name="serializationInfo">The <see cref="T:System.Runtime.Serialization.SerializationInfo" /> to be used.</param>
440       <param name="streamingContext">The <see cref="T:System.Runtime.Serialization.StreamingContext" /> to be used.</param>
441     </member>
442     <member name="T:System.Net.CredentialCache">
443       <summary>Provides storage for multiple credentials.</summary>
444     </member>
445     <member name="M:System.Net.CredentialCache.#ctor">
446       <summary>Creates a new instance of the <see cref="T:System.Net.CredentialCache" /> class.</summary>
447     </member>
448     <member name="M:System.Net.CredentialCache.Add(System.String,System.Int32,System.String,System.Net.NetworkCredential)">
449       <summary>Adds a <see cref="T:System.Net.NetworkCredential" /> instance for use with SMTP to the credential cache and associates it with a host computer, port, and authentication protocol. Credentials added using this method are valid for SMTP only. This method does not work for HTTP or FTP requests.</summary>
450       <param name="host">A <see cref="T:System.String" /> that identifies the host computer.</param>
451       <param name="port">A <see cref="T:System.Int32" /> that specifies the port to connect to on <paramref name="host" />.</param>
452       <param name="authenticationType">A <see cref="T:System.String" /> that identifies the authentication scheme used when connecting to <paramref name="host" /> using <paramref name="cred" />.</param>
453       <param name="credential">The <see cref="T:System.Net.NetworkCredential" /> to add to the credential cache.</param>
454       <exception cref="T:System.ArgumentNullException">
455         <paramref name="host" /> is <see langword="null" />.
456 -or-
457 <paramref name="authType" /> is <see langword="null" />.</exception>
458       <exception cref="T:System.ArgumentException">
459         <paramref name="authType" /> not an accepted value.</exception>
460       <exception cref="T:System.ArgumentOutOfRangeException">
461         <paramref name="port" /> is less than zero.</exception>
462     </member>
463     <member name="M:System.Net.CredentialCache.Add(System.Uri,System.String,System.Net.NetworkCredential)">
464       <summary>Adds a <see cref="T:System.Net.NetworkCredential" /> instance to the credential cache for use with protocols other than SMTP and associates it with a Uniform Resource Identifier (URI) prefix and authentication protocol.</summary>
465       <param name="uriPrefix">A <see cref="T:System.Uri" /> that specifies the URI prefix of the resources that the credential grants access to.</param>
466       <param name="authType">The authentication scheme used by the resource named in <paramref name="uriPrefix" />.</param>
467       <param name="cred">The <see cref="T:System.Net.NetworkCredential" /> to add to the credential cache.</param>
468       <exception cref="T:System.ArgumentNullException">
469         <paramref name="uriPrefix" /> is <see langword="null" />.
470 -or-
471 <paramref name="authType" /> is <see langword="null" />.</exception>
472       <exception cref="T:System.ArgumentException">The same credentials are added more than once.</exception>
473     </member>
474     <member name="P:System.Net.CredentialCache.DefaultCredentials">
475       <summary>Gets the system credentials of the application.</summary>
476       <returns>An <see cref="T:System.Net.ICredentials" /> that represents the system credentials of the application.</returns>
477     </member>
478     <member name="P:System.Net.CredentialCache.DefaultNetworkCredentials">
479       <summary>Gets the network credentials of the current security context.</summary>
480       <returns>An <see cref="T:System.Net.NetworkCredential" /> that represents the network credentials of the current user or application.</returns>
481     </member>
482     <member name="M:System.Net.CredentialCache.GetCredential(System.String,System.Int32,System.String)">
483       <summary>Returns the <see cref="T:System.Net.NetworkCredential" /> instance associated with the specified host, port, and authentication protocol.</summary>
484       <param name="host">A <see cref="T:System.String" /> that identifies the host computer.</param>
485       <param name="port">A <see cref="T:System.Int32" /> that specifies the port to connect to on <paramref name="host" />.</param>
486       <param name="authenticationType">A <see cref="T:System.String" /> that identifies the authentication scheme used when connecting to <paramref name="host" />.</param>
487       <returns>A <see cref="T:System.Net.NetworkCredential" /> or, if there is no matching credential in the cache, <see langword="null" />.</returns>
488       <exception cref="T:System.ArgumentNullException">
489         <paramref name="host" /> is <see langword="null" />.
490 -or-
491 <paramref name="authType" /> is <see langword="null" />.</exception>
492       <exception cref="T:System.ArgumentException">
493         <paramref name="authType" /> not an accepted value.
494 -or-
495 <paramref name="host" /> is equal to the empty string ("").</exception>
496       <exception cref="T:System.ArgumentOutOfRangeException">
497         <paramref name="port" /> is less than zero.</exception>
498     </member>
499     <member name="M:System.Net.CredentialCache.GetCredential(System.Uri,System.String)">
500       <summary>Returns the <see cref="T:System.Net.NetworkCredential" /> instance associated with the specified Uniform Resource Identifier (URI) and authentication type.</summary>
501       <param name="uriPrefix">A <see cref="T:System.Uri" /> that specifies the URI prefix of the resources that the credential grants access to.</param>
502       <param name="authType">The authentication scheme used by the resource named in <paramref name="uriPrefix" />.</param>
503       <returns>A <see cref="T:System.Net.NetworkCredential" /> or, if there is no matching credential in the cache, <see langword="null" />.</returns>
504       <exception cref="T:System.ArgumentNullException">
505         <paramref name="uriPrefix" /> or <paramref name="authType" /> is <see langword="null" />.</exception>
506     </member>
507     <member name="M:System.Net.CredentialCache.GetEnumerator">
508       <summary>Returns an enumerator that can iterate through the <see cref="T:System.Net.CredentialCache" /> instance.</summary>
509       <returns>An <see cref="T:System.Collections.IEnumerator" /> for the <see cref="T:System.Net.CredentialCache" />.</returns>
510     </member>
511     <member name="M:System.Net.CredentialCache.Remove(System.String,System.Int32,System.String)">
512       <summary>Deletes a <see cref="T:System.Net.NetworkCredential" /> instance from the cache if it is associated with the specified host, port, and authentication protocol.</summary>
513       <param name="host">A <see cref="T:System.String" /> that identifies the host computer.</param>
514       <param name="port">A <see cref="T:System.Int32" /> that specifies the port to connect to on <paramref name="host" />.</param>
515       <param name="authenticationType">A <see cref="T:System.String" /> that identifies the authentication scheme used when connecting to <paramref name="host" />.</param>
516     </member>
517     <member name="M:System.Net.CredentialCache.Remove(System.Uri,System.String)">
518       <summary>Deletes a <see cref="T:System.Net.NetworkCredential" /> instance from the cache if it is associated with the specified Uniform Resource Identifier (URI) prefix and authentication protocol.</summary>
519       <param name="uriPrefix">A <see cref="T:System.Uri" /> that specifies the URI prefix of the resources that the credential is used for.</param>
520       <param name="authType">The authentication scheme used by the host named in <paramref name="uriPrefix" />.</param>
521     </member>
522     <member name="T:System.Net.DecompressionMethods">
523       <summary>Represents the file compression and decompression encoding format to be used to compress the data received in response to an <see cref="T:System.Net.HttpWebRequest" />.</summary>
524     </member>
525     <member name="F:System.Net.DecompressionMethods.All">
526       <summary>Use all compression-decompression algorithms.</summary>
527     </member>
528     <member name="F:System.Net.DecompressionMethods.Brotli">
529       <summary>Use the Brotli compression-decompression algorithm.</summary>
530     </member>
531     <member name="F:System.Net.DecompressionMethods.Deflate">
532       <summary>Use the deflate compression-decompression algorithm.</summary>
533     </member>
534     <member name="F:System.Net.DecompressionMethods.GZip">
535       <summary>Use the gZip compression-decompression algorithm.</summary>
536     </member>
537     <member name="F:System.Net.DecompressionMethods.None">
538       <summary>Do not use compression.</summary>
539     </member>
540     <member name="T:System.Net.DnsEndPoint">
541       <summary>Represents a network endpoint as a host name or a string representation of an IP address and a port number.</summary>
542     </member>
543     <member name="M:System.Net.DnsEndPoint.#ctor(System.String,System.Int32)">
544       <summary>Initializes a new instance of the <see cref="T:System.Net.DnsEndPoint" /> class with the host name or string representation of an IP address and a port number.</summary>
545       <param name="host">The host name or a string representation of the IP address.</param>
546       <param name="port">The port number associated with the address, or 0 to specify any available port. <paramref name="port" /> is in host order.</param>
547       <exception cref="T:System.ArgumentException">The <paramref name="host" /> parameter contains an empty string.</exception>
548       <exception cref="T:System.ArgumentNullException">The <paramref name="host" /> parameter is a <see langword="null" />.</exception>
549       <exception cref="T:System.ArgumentOutOfRangeException">
550         <paramref name="port" /> is less than <see cref="F:System.Net.IPEndPoint.MinPort" />.
551 -or-
552 <paramref name="port" /> is greater than <see cref="F:System.Net.IPEndPoint.MaxPort" />.</exception>
553     </member>
554     <member name="M:System.Net.DnsEndPoint.#ctor(System.String,System.Int32,System.Net.Sockets.AddressFamily)">
555       <summary>Initializes a new instance of the <see cref="T:System.Net.DnsEndPoint" /> class with the host name or string representation of an IP address, a port number, and an address family.</summary>
556       <param name="host">The host name or a string representation of the IP address.</param>
557       <param name="port">The port number associated with the address, or 0 to specify any available port. <paramref name="port" /> is in host order.</param>
558       <param name="addressFamily">One of the <see cref="T:System.Net.Sockets.AddressFamily" /> values.</param>
559       <exception cref="T:System.ArgumentException">The <paramref name="host" /> parameter contains an empty string.
560 -or-
561 <paramref name="addressFamily" /> is <see cref="F:System.Net.Sockets.AddressFamily.Unknown" />.</exception>
562       <exception cref="T:System.ArgumentNullException">The <paramref name="host" /> parameter is a <see langword="null" />.</exception>
563       <exception cref="T:System.ArgumentOutOfRangeException">
564         <paramref name="port" /> is less than <see cref="F:System.Net.IPEndPoint.MinPort" />.
565 -or-
566 <paramref name="port" /> is greater than <see cref="F:System.Net.IPEndPoint.MaxPort" />.</exception>
567     </member>
568     <member name="P:System.Net.DnsEndPoint.AddressFamily">
569       <summary>Gets the Internet Protocol (IP) address family.</summary>
570       <returns>One of the <see cref="T:System.Net.Sockets.AddressFamily" /> values.</returns>
571     </member>
572     <member name="M:System.Net.DnsEndPoint.Equals(System.Object)">
573       <summary>Compares two <see cref="T:System.Net.DnsEndPoint" /> objects.</summary>
574       <param name="comparand">A <see cref="T:System.Net.DnsEndPoint" /> instance to compare to the current instance.</param>
575       <returns>
576         <see langword="true" /> if the two <see cref="T:System.Net.DnsEndPoint" /> instances are equal; otherwise, <see langword="false" />.</returns>
577     </member>
578     <member name="M:System.Net.DnsEndPoint.GetHashCode">
579       <summary>Returns a hash value for a <see cref="T:System.Net.DnsEndPoint" />.</summary>
580       <returns>An integer hash value for the <see cref="T:System.Net.DnsEndPoint" />.</returns>
581     </member>
582     <member name="P:System.Net.DnsEndPoint.Host">
583       <summary>Gets the host name or string representation of the Internet Protocol (IP) address of the host.</summary>
584       <returns>A host name or string representation of an IP address.</returns>
585     </member>
586     <member name="P:System.Net.DnsEndPoint.Port">
587       <summary>Gets the port number of the <see cref="T:System.Net.DnsEndPoint" />.</summary>
588       <returns>An integer value in the range 0 to 0xffff indicating the port number of the <see cref="T:System.Net.DnsEndPoint" />.</returns>
589     </member>
590     <member name="M:System.Net.DnsEndPoint.ToString">
591       <summary>Returns the host name or string representation of the IP address and port number of the <see cref="T:System.Net.DnsEndPoint" />.</summary>
592       <returns>A string containing the address family, host name or IP address string, and the port number of the specified <see cref="T:System.Net.DnsEndPoint" />.</returns>
593     </member>
594     <member name="T:System.Net.EndPoint">
595       <summary>Identifies a network address. This is an <see langword="abstract" /> class.</summary>
596     </member>
597     <member name="M:System.Net.EndPoint.#ctor">
598       <summary>Initializes a new instance of the <see cref="T:System.Net.EndPoint" /> class.</summary>
599     </member>
600     <member name="P:System.Net.EndPoint.AddressFamily">
601       <summary>Gets the address family to which the endpoint belongs.</summary>
602       <returns>One of the <see cref="T:System.Net.Sockets.AddressFamily" /> values.</returns>
603       <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>
604     </member>
605     <member name="M:System.Net.EndPoint.Create(System.Net.SocketAddress)">
606       <summary>Creates an <see cref="T:System.Net.EndPoint" /> instance from a <see cref="T:System.Net.SocketAddress" /> instance.</summary>
607       <param name="socketAddress">The socket address that serves as the endpoint for a connection.</param>
608       <returns>A new <see cref="T:System.Net.EndPoint" /> instance that is initialized from the specified <see cref="T:System.Net.SocketAddress" /> instance.</returns>
609       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method when the method is not overridden in a descendant class.</exception>
610     </member>
611     <member name="M:System.Net.EndPoint.Serialize">
612       <summary>Serializes endpoint information into a <see cref="T:System.Net.SocketAddress" /> instance.</summary>
613       <returns>A <see cref="T:System.Net.SocketAddress" /> instance that contains the endpoint information.</returns>
614       <exception cref="T:System.NotImplementedException">Any attempt is made to access the method when the method is not overridden in a descendant class.</exception>
615     </member>
616     <member name="T:System.Net.HttpStatusCode">
617       <summary>Contains the values of status codes defined for HTTP.</summary>
618     </member>
619     <member name="F:System.Net.HttpStatusCode.Accepted">
620       <summary>Equivalent to HTTP status 202. <see cref="F:System.Net.HttpStatusCode.Accepted" /> indicates that the request has been accepted for further processing.</summary>
621     </member>
622     <member name="F:System.Net.HttpStatusCode.AlreadyReported">
623       <summary>Equivalent to HTTP status 208. <see cref="F:System.Net.HttpStatusCode.AlreadyReported" /> indicates that the members of a WebDAV binding have already been enumerated in a preceding part of the multistatus response, and are not being included again.</summary>
624     </member>
625     <member name="F:System.Net.HttpStatusCode.Ambiguous">
626       <summary>Equivalent to HTTP status 300. <see cref="F:System.Net.HttpStatusCode.Ambiguous" /> indicates that the requested information has multiple representations. The default action is to treat this status as a redirect and follow the contents of the Location header associated with this response. <c>Ambiguous</c> is a synonym for <c>MultipleChoices</c>.</summary>
627     </member>
628     <member name="F:System.Net.HttpStatusCode.BadGateway">
629       <summary>Equivalent to HTTP status 502. <see cref="F:System.Net.HttpStatusCode.BadGateway" /> indicates that an intermediate proxy server received a bad response from another proxy or the origin server.</summary>
630     </member>
631     <member name="F:System.Net.HttpStatusCode.BadRequest">
632       <summary>Equivalent to HTTP status 400. <see cref="F:System.Net.HttpStatusCode.BadRequest" /> indicates that the request could not be understood by the server. <see cref="F:System.Net.HttpStatusCode.BadRequest" /> is sent when no other error is applicable, or if the exact error is unknown or does not have its own error code.</summary>
633     </member>
634     <member name="F:System.Net.HttpStatusCode.Conflict">
635       <summary>Equivalent to HTTP status 409. <see cref="F:System.Net.HttpStatusCode.Conflict" /> indicates that the request could not be carried out because of a conflict on the server.</summary>
636     </member>
637     <member name="F:System.Net.HttpStatusCode.Continue">
638       <summary>Equivalent to HTTP status 100. <see cref="F:System.Net.HttpStatusCode.Continue" /> indicates that the client can continue with its request.</summary>
639     </member>
640     <member name="F:System.Net.HttpStatusCode.Created">
641       <summary>Equivalent to HTTP status 201. <see cref="F:System.Net.HttpStatusCode.Created" /> indicates that the request resulted in a new resource created before the response was sent.</summary>
642     </member>
643     <member name="F:System.Net.HttpStatusCode.EarlyHints">
644       <summary>Equivalent to HTTP status 103. <see cref="F:System.Net.HttpStatusCode.EarlyHints" /> indicates to the client that the server is likely to send a final response with the header fields included in the informational response.</summary>
645     </member>
646     <member name="F:System.Net.HttpStatusCode.ExpectationFailed">
647       <summary>Equivalent to HTTP status 417. <see cref="F:System.Net.HttpStatusCode.ExpectationFailed" /> indicates that an expectation given in an Expect header could not be met by the server.</summary>
648     </member>
649     <member name="F:System.Net.HttpStatusCode.FailedDependency">
650       <summary>Equivalent to HTTP status 424. <see cref="F:System.Net.HttpStatusCode.FailedDependency" /> indicates that the method couldn't be performed on the resource because the requested action depended on another action and that action failed.</summary>
651     </member>
652     <member name="F:System.Net.HttpStatusCode.Forbidden">
653       <summary>Equivalent to HTTP status 403. <see cref="F:System.Net.HttpStatusCode.Forbidden" /> indicates that the server refuses to fulfill the request.</summary>
654     </member>
655     <member name="F:System.Net.HttpStatusCode.Found">
656       <summary>Equivalent to HTTP status 302. <see cref="F:System.Net.HttpStatusCode.Found" /> indicates that the requested information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method. <c>Found</c> is a synonym for <c>Redirect</c>.</summary>
657     </member>
658     <member name="F:System.Net.HttpStatusCode.GatewayTimeout">
659       <summary>Equivalent to HTTP status 504. <see cref="F:System.Net.HttpStatusCode.GatewayTimeout" /> indicates that an intermediate proxy server timed out while waiting for a response from another proxy or the origin server.</summary>
660     </member>
661     <member name="F:System.Net.HttpStatusCode.Gone">
662       <summary>Equivalent to HTTP status 410. <see cref="F:System.Net.HttpStatusCode.Gone" /> indicates that the requested resource is no longer available.</summary>
663     </member>
664     <member name="F:System.Net.HttpStatusCode.HttpVersionNotSupported">
665       <summary>Equivalent to HTTP status 505. <see cref="F:System.Net.HttpStatusCode.HttpVersionNotSupported" /> indicates that the requested HTTP version is not supported by the server.</summary>
666     </member>
667     <member name="F:System.Net.HttpStatusCode.IMUsed">
668       <summary>Equivalent to HTTP status 226. <see cref="F:System.Net.HttpStatusCode.IMUsed" /> indicates that the server has fulfilled a request for the resource, and the response is a representation of the result of one or more instance-manipulations applied to the current instance.</summary>
669     </member>
670     <member name="F:System.Net.HttpStatusCode.InsufficientStorage">
671       <summary>Equivalent to HTTP status 507. <see cref="F:System.Net.HttpStatusCode.InsufficientStorage" /> indicates that the server is unable to store the representation needed to complete the request.</summary>
672     </member>
673     <member name="F:System.Net.HttpStatusCode.InternalServerError">
674       <summary>Equivalent to HTTP status 500. <see cref="F:System.Net.HttpStatusCode.InternalServerError" /> indicates that a generic error has occurred on the server.</summary>
675     </member>
676     <member name="F:System.Net.HttpStatusCode.LengthRequired">
677       <summary>Equivalent to HTTP status 411. <see cref="F:System.Net.HttpStatusCode.LengthRequired" /> indicates that the required Content-length header is missing.</summary>
678     </member>
679     <member name="F:System.Net.HttpStatusCode.Locked">
680       <summary>Equivalent to HTTP status 423. <see cref="F:System.Net.HttpStatusCode.Locked" /> indicates that the source or destination resource is locked.</summary>
681     </member>
682     <member name="F:System.Net.HttpStatusCode.LoopDetected">
683       <summary>Equivalent to HTTP status 508. <see cref="F:System.Net.HttpStatusCode.LoopDetected" /> indicates that the server terminated an operation because it encountered an infinite loop while processing a WebDAV request with "Depth: infinity". This status code is meant for backward compatibility with clients not aware of the 208 status code <see cref="F:System.Net.HttpStatusCode.AlreadyReported" /> appearing in multistatus response bodies.</summary>
684     </member>
685     <member name="F:System.Net.HttpStatusCode.MethodNotAllowed">
686       <summary>Equivalent to HTTP status 405. <see cref="F:System.Net.HttpStatusCode.MethodNotAllowed" /> indicates that the request method (POST or GET) is not allowed on the requested resource.</summary>
687     </member>
688     <member name="F:System.Net.HttpStatusCode.MisdirectedRequest">
689       <summary>Equivalent to HTTP status 421. <see cref="F:System.Net.HttpStatusCode.MisdirectedRequest" /> indicates that the request was directed at a server that is not able to produce a response.</summary>
690     </member>
691     <member name="F:System.Net.HttpStatusCode.Moved">
692       <summary>Equivalent to HTTP status 301. <see cref="F:System.Net.HttpStatusCode.Moved" /> indicates that the requested information has been moved to the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method. <c>Moved</c> is a synonym for <c>MovedPermanently</c>.</summary>
693     </member>
694     <member name="F:System.Net.HttpStatusCode.MovedPermanently">
695       <summary>Equivalent to HTTP status 301. <see cref="F:System.Net.HttpStatusCode.MovedPermanently" /> indicates that the requested information has been moved to the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. <c>MovedPermanently</c> is a synonym for <c>Moved</c>.</summary>
696     </member>
697     <member name="F:System.Net.HttpStatusCode.MultipleChoices">
698       <summary>Equivalent to HTTP status 300. <see cref="F:System.Net.HttpStatusCode.MultipleChoices" /> indicates that the requested information has multiple representations. The default action is to treat this status as a redirect and follow the contents of the Location header associated with this response. <c>MultipleChoices</c> is a synonym for <c>Ambiguous</c>.</summary>
699     </member>
700     <member name="F:System.Net.HttpStatusCode.MultiStatus">
701       <summary>Equivalent to HTTP status 207. <see cref="F:System.Net.HttpStatusCode.MultiStatus" /> indicates multiple status codes for a single response during a Web Distributed Authoring and Versioning (WebDAV) operation. The response body contains XML that describes the status codes.</summary>
702     </member>
703     <member name="F:System.Net.HttpStatusCode.NetworkAuthenticationRequired">
704       <summary>Equivalent to HTTP status 511. <see cref="F:System.Net.HttpStatusCode.NetworkAuthenticationRequired" /> indicates that the client needs to authenticate to gain network access; it's intended for use by intercepting proxies used to control access to the network.</summary>
705     </member>
706     <member name="F:System.Net.HttpStatusCode.NoContent">
707       <summary>Equivalent to HTTP status 204. <see cref="F:System.Net.HttpStatusCode.NoContent" /> indicates that the request has been successfully processed and that the response is intentionally blank.</summary>
708     </member>
709     <member name="F:System.Net.HttpStatusCode.NonAuthoritativeInformation">
710       <summary>Equivalent to HTTP status 203. <see cref="F:System.Net.HttpStatusCode.NonAuthoritativeInformation" /> indicates that the returned metainformation is from a cached copy instead of the origin server and therefore may be incorrect.</summary>
711     </member>
712     <member name="F:System.Net.HttpStatusCode.NotAcceptable">
713       <summary>Equivalent to HTTP status 406. <see cref="F:System.Net.HttpStatusCode.NotAcceptable" /> indicates that the client has indicated with Accept headers that it will not accept any of the available representations of the resource.</summary>
714     </member>
715     <member name="F:System.Net.HttpStatusCode.NotExtended">
716       <summary>Equivalent to HTTP status 510. <see cref="F:System.Net.HttpStatusCode.NotExtended" /> indicates that further extensions to the request are required for the server to fulfill it.</summary>
717     </member>
718     <member name="F:System.Net.HttpStatusCode.NotFound">
719       <summary>Equivalent to HTTP status 404. <see cref="F:System.Net.HttpStatusCode.NotFound" /> indicates that the requested resource does not exist on the server.</summary>
720     </member>
721     <member name="F:System.Net.HttpStatusCode.NotImplemented">
722       <summary>Equivalent to HTTP status 501. <see cref="F:System.Net.HttpStatusCode.NotImplemented" /> indicates that the server does not support the requested function.</summary>
723     </member>
724     <member name="F:System.Net.HttpStatusCode.NotModified">
725       <summary>Equivalent to HTTP status 304. <see cref="F:System.Net.HttpStatusCode.NotModified" /> indicates that the client's cached copy is up to date. The contents of the resource are not transferred.</summary>
726     </member>
727     <member name="F:System.Net.HttpStatusCode.OK">
728       <summary>Equivalent to HTTP status 200. <see cref="F:System.Net.HttpStatusCode.OK" /> indicates that the request succeeded and that the requested information is in the response. This is the most common status code to receive.</summary>
729     </member>
730     <member name="F:System.Net.HttpStatusCode.PartialContent">
731       <summary>Equivalent to HTTP status 206. <see cref="F:System.Net.HttpStatusCode.PartialContent" /> indicates that the response is a partial response as requested by a GET request that includes a byte range.</summary>
732     </member>
733     <member name="F:System.Net.HttpStatusCode.PaymentRequired">
734       <summary>Equivalent to HTTP status 402. <see cref="F:System.Net.HttpStatusCode.PaymentRequired" /> is reserved for future use.</summary>
735     </member>
736     <member name="F:System.Net.HttpStatusCode.PermanentRedirect">
737       <summary>Equivalent to HTTP status 308. <see cref="F:System.Net.HttpStatusCode.PermanentRedirect" /> indicates that the request information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will also use the POST method.</summary>
738     </member>
739     <member name="F:System.Net.HttpStatusCode.PreconditionFailed">
740       <summary>Equivalent to HTTP status 412. <see cref="F:System.Net.HttpStatusCode.PreconditionFailed" /> indicates that a condition set for this request failed, and the request cannot be carried out. Conditions are set with conditional request headers like If-Match, If-None-Match, or If-Unmodified-Since.</summary>
741     </member>
742     <member name="F:System.Net.HttpStatusCode.PreconditionRequired">
743       <summary>Equivalent to HTTP status 428. <see cref="F:System.Net.HttpStatusCode.PreconditionRequired" /> indicates that the server requires the request to be conditional.</summary>
744     </member>
745     <member name="F:System.Net.HttpStatusCode.Processing">
746       <summary>Equivalent to HTTP status 102. <see cref="F:System.Net.HttpStatusCode.Processing" /> indicates that the server has accepted the complete request but hasn't completed it yet.</summary>
747     </member>
748     <member name="F:System.Net.HttpStatusCode.ProxyAuthenticationRequired">
749       <summary>Equivalent to HTTP status 407. <see cref="F:System.Net.HttpStatusCode.ProxyAuthenticationRequired" /> indicates that the requested proxy requires authentication. The Proxy-authenticate header contains the details of how to perform the authentication.</summary>
750     </member>
751     <member name="F:System.Net.HttpStatusCode.Redirect">
752       <summary>Equivalent to HTTP status 302. <see cref="F:System.Net.HttpStatusCode.Redirect" /> indicates that the requested information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will use the GET method. <c>Redirect</c> is a synonym for <c>Found</c>.</summary>
753     </member>
754     <member name="F:System.Net.HttpStatusCode.RedirectKeepVerb">
755       <summary>Equivalent to HTTP status 307. <see cref="F:System.Net.HttpStatusCode.RedirectKeepVerb" /> indicates that the request information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will also use the POST method. <c>RedirectKeepVerb</c> is a synonym for <c>TemporaryRedirect</c>.</summary>
756     </member>
757     <member name="F:System.Net.HttpStatusCode.RedirectMethod">
758       <summary>Equivalent to HTTP status 303. <see cref="F:System.Net.HttpStatusCode.RedirectMethod" /> automatically redirects the client to the URI specified in the Location header as the result of a POST. The request to the resource specified by the Location header will be made with a GET. <c>RedirectMethod</c> is a synonym for <c>SeeOther</c>.</summary>
759     </member>
760     <member name="F:System.Net.HttpStatusCode.RequestedRangeNotSatisfiable">
761       <summary>Equivalent to HTTP status 416. <see cref="F:System.Net.HttpStatusCode.RequestedRangeNotSatisfiable" /> indicates that the range of data requested from the resource cannot be returned, either because the beginning of the range is before the beginning of the resource, or the end of the range is after the end of the resource.</summary>
762     </member>
763     <member name="F:System.Net.HttpStatusCode.RequestEntityTooLarge">
764       <summary>Equivalent to HTTP status 413. <see cref="F:System.Net.HttpStatusCode.RequestEntityTooLarge" /> indicates that the request is too large for the server to process.</summary>
765     </member>
766     <member name="F:System.Net.HttpStatusCode.RequestHeaderFieldsTooLarge">
767       <summary>Equivalent to HTTP status 431. <see cref="F:System.Net.HttpStatusCode.RequestHeaderFieldsTooLarge" /> indicates that the server is unwilling to process the request because its header fields (either an individual header field or all the header fields collectively) are too large.</summary>
768     </member>
769     <member name="F:System.Net.HttpStatusCode.RequestTimeout">
770       <summary>Equivalent to HTTP status 408. <see cref="F:System.Net.HttpStatusCode.RequestTimeout" /> indicates that the client did not send a request within the time the server was expecting the request.</summary>
771     </member>
772     <member name="F:System.Net.HttpStatusCode.RequestUriTooLong">
773       <summary>Equivalent to HTTP status 414. <see cref="F:System.Net.HttpStatusCode.RequestUriTooLong" /> indicates that the URI is too long.</summary>
774     </member>
775     <member name="F:System.Net.HttpStatusCode.ResetContent">
776       <summary>Equivalent to HTTP status 205. <see cref="F:System.Net.HttpStatusCode.ResetContent" /> indicates that the client should reset (not reload) the current resource.</summary>
777     </member>
778     <member name="F:System.Net.HttpStatusCode.SeeOther">
779       <summary>Equivalent to HTTP status 303. <see cref="F:System.Net.HttpStatusCode.SeeOther" /> automatically redirects the client to the URI specified in the Location header as the result of a POST. The request to the resource specified by the Location header will be made with a GET. <c>SeeOther</c> is a synonym for <c>RedirectMethod</c></summary>
780     </member>
781     <member name="F:System.Net.HttpStatusCode.ServiceUnavailable">
782       <summary>Equivalent to HTTP status 503. <see cref="F:System.Net.HttpStatusCode.ServiceUnavailable" /> indicates that the server is temporarily unavailable, usually due to high load or maintenance.</summary>
783     </member>
784     <member name="F:System.Net.HttpStatusCode.SwitchingProtocols">
785       <summary>Equivalent to HTTP status 101. <see cref="F:System.Net.HttpStatusCode.SwitchingProtocols" /> indicates that the protocol version or protocol is being changed.</summary>
786     </member>
787     <member name="F:System.Net.HttpStatusCode.TemporaryRedirect">
788       <summary>Equivalent to HTTP status 307. <see cref="F:System.Net.HttpStatusCode.TemporaryRedirect" /> indicates that the request information is located at the URI specified in the Location header. The default action when this status is received is to follow the Location header associated with the response. When the original request method was POST, the redirected request will also use the POST method. <c>TemporaryRedirect</c> is a synonym for <c>RedirectKeepVerb</c>.</summary>
789     </member>
790     <member name="F:System.Net.HttpStatusCode.TooManyRequests">
791       <summary>Equivalent to HTTP status 429. <see cref="F:System.Net.HttpStatusCode.TooManyRequests" /> indicates that the user has sent too many requests in a given amount of time.</summary>
792     </member>
793     <member name="F:System.Net.HttpStatusCode.Unauthorized">
794       <summary>Equivalent to HTTP status 401. <see cref="F:System.Net.HttpStatusCode.Unauthorized" /> indicates that the requested resource requires authentication. The WWW-Authenticate header contains the details of how to perform the authentication.</summary>
795     </member>
796     <member name="F:System.Net.HttpStatusCode.UnavailableForLegalReasons">
797       <summary>Equivalent to HTTP status 451. <see cref="F:System.Net.HttpStatusCode.UnavailableForLegalReasons" /> indicates that the server is denying access to the resource as a consequence of a legal demand.</summary>
798     </member>
799     <member name="F:System.Net.HttpStatusCode.UnprocessableEntity">
800       <summary>Equivalent to HTTP status 422. <see cref="F:System.Net.HttpStatusCode.UnprocessableEntity" /> indicates that the request was well-formed but was unable to be followed due to semantic errors.</summary>
801     </member>
802     <member name="F:System.Net.HttpStatusCode.UnsupportedMediaType">
803       <summary>Equivalent to HTTP status 415. <see cref="F:System.Net.HttpStatusCode.UnsupportedMediaType" /> indicates that the request is an unsupported type.</summary>
804     </member>
805     <member name="F:System.Net.HttpStatusCode.Unused">
806       <summary>Equivalent to HTTP status 306. <see cref="F:System.Net.HttpStatusCode.Unused" /> is a proposed extension to the HTTP/1.1 specification that is not fully specified.</summary>
807     </member>
808     <member name="F:System.Net.HttpStatusCode.UpgradeRequired">
809       <summary>Equivalent to HTTP status 426. <see cref="F:System.Net.HttpStatusCode.UpgradeRequired" /> indicates that the client should switch to a different protocol such as TLS/1.0.</summary>
810     </member>
811     <member name="F:System.Net.HttpStatusCode.UseProxy">
812       <summary>Equivalent to HTTP status 305. <see cref="F:System.Net.HttpStatusCode.UseProxy" /> indicates that the request should use the proxy server at the URI specified in the Location header.</summary>
813     </member>
814     <member name="F:System.Net.HttpStatusCode.VariantAlsoNegotiates">
815       <summary>Equivalent to HTTP status 506. <see cref="F:System.Net.HttpStatusCode.VariantAlsoNegotiates" /> indicates that the chosen variant resource is configured to engage in transparent content negotiation itself and, therefore, isn't a proper endpoint in the negotiation process.</summary>
816     </member>
817     <member name="T:System.Net.HttpVersion">
818       <summary>Defines the HTTP version numbers that are supported by the <see cref="T:System.Net.HttpWebRequest" /> and <see cref="T:System.Net.HttpWebResponse" /> classes.</summary>
819     </member>
820     <member name="F:System.Net.HttpVersion.Unknown" />
821     <member name="F:System.Net.HttpVersion.Version10">
822       <summary>Defines a <see cref="T:System.Version" /> instance for HTTP 1.0.</summary>
823     </member>
824     <member name="F:System.Net.HttpVersion.Version11">
825       <summary>Defines a <see cref="T:System.Version" /> instance for HTTP 1.1.</summary>
826     </member>
827     <member name="F:System.Net.HttpVersion.Version20" />
828     <member name="T:System.Net.ICredentials">
829       <summary>Provides the base authentication interface for retrieving credentials for Web client authentication.</summary>
830     </member>
831     <member name="M:System.Net.ICredentials.GetCredential(System.Uri,System.String)">
832       <summary>Returns a <see cref="T:System.Net.NetworkCredential" /> object that is associated with the specified URI, and authentication type.</summary>
833       <param name="uri">The <see cref="T:System.Uri" /> that the client is providing authentication for.</param>
834       <param name="authType">The type of authentication, as defined in the <see cref="P:System.Net.IAuthenticationModule.AuthenticationType" /> property.</param>
835       <returns>The <see cref="T:System.Net.NetworkCredential" /> that is associated with the specified URI and authentication type, or, if no credentials are available, <see langword="null" />.</returns>
836     </member>
837     <member name="T:System.Net.ICredentialsByHost">
838       <summary>Provides the interface for retrieving credentials for a host, port, and authentication type.</summary>
839     </member>
840     <member name="M:System.Net.ICredentialsByHost.GetCredential(System.String,System.Int32,System.String)">
841       <summary>Returns the credential for the specified host, port, and authentication protocol.</summary>
842       <param name="host">The host computer that is authenticating the client.</param>
843       <param name="port">The port on <paramref name="host" /> that the client will communicate with.</param>
844       <param name="authenticationType">The authentication protocol.</param>
845       <returns>A <see cref="T:System.Net.NetworkCredential" /> for the specified host, port, and authentication protocol, or <see langword="null" /> if there are no credentials available for the specified host, port, and authentication protocol.</returns>
846     </member>
847     <member name="T:System.Net.IPAddress">
848       <summary>Provides an Internet Protocol (IP) address.</summary>
849     </member>
850     <member name="M:System.Net.IPAddress.#ctor(System.Byte[])">
851       <summary>Initializes a new instance of the <see cref="T:System.Net.IPAddress" /> class with the address specified as a <see cref="T:System.Byte" /> array.</summary>
852       <param name="address">The byte array value of the IP address.</param>
853       <exception cref="T:System.ArgumentNullException">
854         <paramref name="address" /> is <see langword="null" />.</exception>
855       <exception cref="T:System.ArgumentException">
856         <paramref name="address" /> contains a bad IP address.</exception>
857     </member>
858     <member name="M:System.Net.IPAddress.#ctor(System.Byte[],System.Int64)">
859       <summary>Initializes a new instance of the <see cref="T:System.Net.IPAddress" /> class with the address specified as a <see cref="T:System.Byte" /> array and the specified scope identifier.</summary>
860       <param name="address">The byte array value of the IP address.</param>
861       <param name="scopeid">The long value of the scope identifier.</param>
862       <exception cref="T:System.ArgumentNullException">
863         <paramref name="address" /> is <see langword="null" />.</exception>
864       <exception cref="T:System.ArgumentException">
865         <paramref name="address" /> contains a bad IP address.</exception>
866       <exception cref="T:System.ArgumentOutOfRangeException">
867         <paramref name="scopeid" /> &lt; 0 or
868 <paramref name="scopeid" /> &gt; 0x00000000FFFFFFFF</exception>
869     </member>
870     <member name="M:System.Net.IPAddress.#ctor(System.Int64)">
871       <summary>Initializes a new instance of the <see cref="T:System.Net.IPAddress" /> class with the address specified as an <see cref="T:System.Int64" />.</summary>
872       <param name="newAddress">The long value of the IP address. For example, the value 0x2414188f in big-endian format would be the IP address "143.24.20.36".</param>
873       <exception cref="T:System.ArgumentOutOfRangeException">
874         <paramref name="newAddress" /> &lt; 0 or
875 <paramref name="newAddress" /> &gt; 0x00000000FFFFFFFF</exception>
876     </member>
877     <member name="M:System.Net.IPAddress.#ctor(System.ReadOnlySpan{System.Byte})">
878       <param name="address" />
879     </member>
880     <member name="M:System.Net.IPAddress.#ctor(System.ReadOnlySpan{System.Byte},System.Int64)">
881       <param name="address" />
882       <param name="scopeid" />
883     </member>
884     <member name="P:System.Net.IPAddress.Address">
885       <summary>An Internet Protocol (IP) address.</summary>
886       <returns>The long value of the IP address.</returns>
887       <exception cref="T:System.Net.Sockets.SocketException">The address family is <see cref="F:System.Net.Sockets.AddressFamily.InterNetworkV6" />.</exception>
888     </member>
889     <member name="P:System.Net.IPAddress.AddressFamily">
890       <summary>Gets the address family of the IP address.</summary>
891       <returns>Returns <see cref="F:System.Net.Sockets.AddressFamily.InterNetwork" /> for IPv4 or <see cref="F:System.Net.Sockets.AddressFamily.InterNetworkV6" /> for IPv6.</returns>
892     </member>
893     <member name="F:System.Net.IPAddress.Any">
894       <summary>Provides an IP address that indicates that the server must listen for client activity on all network interfaces. This field is read-only.</summary>
895     </member>
896     <member name="F:System.Net.IPAddress.Broadcast">
897       <summary>Provides the IP broadcast address. This field is read-only.</summary>
898     </member>
899     <member name="M:System.Net.IPAddress.Equals(System.Object)">
900       <summary>Compares two IP addresses.</summary>
901       <param name="comparand">An <see cref="T:System.Net.IPAddress" /> instance to compare to the current instance.</param>
902       <returns>
903         <see langword="true" /> if the two addresses are equal; otherwise, <see langword="false" />.</returns>
904     </member>
905     <member name="M:System.Net.IPAddress.GetAddressBytes">
906       <summary>Provides a copy of the <see cref="T:System.Net.IPAddress" /> as an array of bytes.</summary>
907       <returns>A <see cref="T:System.Byte" /> array.</returns>
908     </member>
909     <member name="M:System.Net.IPAddress.GetHashCode">
910       <summary>Returns a hash value for an IP address.</summary>
911       <returns>An integer hash value.</returns>
912     </member>
913     <member name="M:System.Net.IPAddress.HostToNetworkOrder(System.Int16)">
914       <summary>Converts a short value from host byte order to network byte order.</summary>
915       <param name="host">The number to convert, expressed in host byte order.</param>
916       <returns>A short value, expressed in network byte order.</returns>
917     </member>
918     <member name="M:System.Net.IPAddress.HostToNetworkOrder(System.Int32)">
919       <summary>Converts an integer value from host byte order to network byte order.</summary>
920       <param name="host">The number to convert, expressed in host byte order.</param>
921       <returns>An integer value, expressed in network byte order.</returns>
922     </member>
923     <member name="M:System.Net.IPAddress.HostToNetworkOrder(System.Int64)">
924       <summary>Converts a long value from host byte order to network byte order.</summary>
925       <param name="host">The number to convert, expressed in host byte order.</param>
926       <returns>A long value, expressed in network byte order.</returns>
927     </member>
928     <member name="F:System.Net.IPAddress.IPv6Any">
929       <summary>The <see cref="M:System.Net.Sockets.Socket.Bind(System.Net.EndPoint)" /> method uses the <see cref="F:System.Net.IPAddress.IPv6Any" /> field to indicate that a <see cref="T:System.Net.Sockets.Socket" /> must listen for client activity on all network interfaces.</summary>
930     </member>
931     <member name="F:System.Net.IPAddress.IPv6Loopback">
932       <summary>Provides the IP loopback address. This property is read-only.</summary>
933     </member>
934     <member name="F:System.Net.IPAddress.IPv6None">
935       <summary>Provides an IP address that indicates that no network interface should be used. This property is read-only.</summary>
936     </member>
937     <member name="P:System.Net.IPAddress.IsIPv4MappedToIPv6">
938       <summary>Gets whether the IP address is an IPv4-mapped IPv6 address.</summary>
939       <returns>Returns <see cref="T:System.Boolean" />.
940 <see langword="true" /> if the IP address is an IPv4-mapped IPv6 address; otherwise, <see langword="false" />.</returns>
941     </member>
942     <member name="P:System.Net.IPAddress.IsIPv6LinkLocal">
943       <summary>Gets whether the address is an IPv6 link local address.</summary>
944       <returns>
945         <see langword="true" /> if the IP address is an IPv6 link local address; otherwise, <see langword="false" />.</returns>
946     </member>
947     <member name="P:System.Net.IPAddress.IsIPv6Multicast">
948       <summary>Gets whether the address is an IPv6 multicast global address.</summary>
949       <returns>
950         <see langword="true" /> if the IP address is an IPv6 multicast global address; otherwise, <see langword="false" />.</returns>
951     </member>
952     <member name="P:System.Net.IPAddress.IsIPv6SiteLocal">
953       <summary>Gets whether the address is an IPv6 site local address.</summary>
954       <returns>
955         <see langword="true" /> if the IP address is an IPv6 site local address; otherwise, <see langword="false" />.</returns>
956     </member>
957     <member name="P:System.Net.IPAddress.IsIPv6Teredo">
958       <summary>Gets whether the address is an IPv6 Teredo address.</summary>
959       <returns>
960         <see langword="true" /> if the IP address is an IPv6 Teredo address; otherwise, <see langword="false" />.</returns>
961     </member>
962     <member name="M:System.Net.IPAddress.IsLoopback(System.Net.IPAddress)">
963       <summary>Indicates whether the specified IP address is the loopback address.</summary>
964       <param name="address">An IP address.</param>
965       <returns>
966         <see langword="true" /> if <paramref name="address" /> is the loopback address; otherwise, <see langword="false" />.</returns>
967     </member>
968     <member name="F:System.Net.IPAddress.Loopback">
969       <summary>Provides the IP loopback address. This field is read-only.</summary>
970     </member>
971     <member name="M:System.Net.IPAddress.MapToIPv4">
972       <summary>Maps the <see cref="T:System.Net.IPAddress" /> object to an IPv4 address.</summary>
973       <returns>Returns <see cref="T:System.Net.IPAddress" />.
974 An IPv4 address.</returns>
975     </member>
976     <member name="M:System.Net.IPAddress.MapToIPv6">
977       <summary>Maps the <see cref="T:System.Net.IPAddress" /> object to an IPv6 address.</summary>
978       <returns>Returns <see cref="T:System.Net.IPAddress" />.
979 An IPv6 address.</returns>
980     </member>
981     <member name="M:System.Net.IPAddress.NetworkToHostOrder(System.Int16)">
982       <summary>Converts a short value from network byte order to host byte order.</summary>
983       <param name="network">The number to convert, expressed in network byte order.</param>
984       <returns>A short value, expressed in host byte order.</returns>
985     </member>
986     <member name="M:System.Net.IPAddress.NetworkToHostOrder(System.Int32)">
987       <summary>Converts an integer value from network byte order to host byte order.</summary>
988       <param name="network">The number to convert, expressed in network byte order.</param>
989       <returns>An integer value, expressed in host byte order.</returns>
990     </member>
991     <member name="M:System.Net.IPAddress.NetworkToHostOrder(System.Int64)">
992       <summary>Converts a long value from network byte order to host byte order.</summary>
993       <param name="network">The number to convert, expressed in network byte order.</param>
994       <returns>A long value, expressed in host byte order.</returns>
995     </member>
996     <member name="F:System.Net.IPAddress.None">
997       <summary>Provides an IP address that indicates that no network interface should be used. This field is read-only.</summary>
998     </member>
999     <member name="M:System.Net.IPAddress.Parse(System.ReadOnlySpan{System.Char})">
1000       <param name="ipString" />
1001     </member>
1002     <member name="M:System.Net.IPAddress.Parse(System.String)">
1003       <summary>Converts an IP address string to an <see cref="T:System.Net.IPAddress" /> instance.</summary>
1004       <param name="ipString">A string that contains an IP address in dotted-quad notation for IPv4 and in colon-hexadecimal notation for IPv6.</param>
1005       <returns>An <see cref="T:System.Net.IPAddress" /> instance.</returns>
1006       <exception cref="T:System.ArgumentNullException">
1007         <paramref name="ipString" /> is <see langword="null" />.</exception>
1008       <exception cref="T:System.FormatException">
1009         <paramref name="ipString" /> is not a valid IP address.</exception>
1010     </member>
1011     <member name="P:System.Net.IPAddress.ScopeId">
1012       <summary>Gets or sets the IPv6 address scope identifier.</summary>
1013       <returns>A long integer that specifies the scope of the address.</returns>
1014       <exception cref="T:System.Net.Sockets.SocketException">
1015         <see langword="AddressFamily" /> = <see langword="InterNetwork" />.</exception>
1016       <exception cref="T:System.ArgumentOutOfRangeException">
1017         <paramref name="scopeId" /> &lt; 0
1018 -or-
1019
1020 <paramref name="scopeId" /> &gt; 0x00000000FFFFFFFF</exception>
1021     </member>
1022     <member name="M:System.Net.IPAddress.ToString">
1023       <summary>Converts an Internet address to its standard notation.</summary>
1024       <returns>A string that contains the IP address in either IPv4 dotted-quad or in IPv6 colon-hexadecimal notation.</returns>
1025       <exception cref="T:System.Net.Sockets.SocketException">The address family is <see cref="F:System.Net.Sockets.AddressFamily.InterNetworkV6" /> and the address is bad.</exception>
1026     </member>
1027     <member name="M:System.Net.IPAddress.TryFormat(System.Span{System.Char},System.Int32@)">
1028       <param name="destination" />
1029       <param name="charsWritten" />
1030     </member>
1031     <member name="M:System.Net.IPAddress.TryParse(System.ReadOnlySpan{System.Char},System.Net.IPAddress@)">
1032       <param name="ipString" />
1033       <param name="address" />
1034     </member>
1035     <member name="M:System.Net.IPAddress.TryParse(System.String,System.Net.IPAddress@)">
1036       <summary>Determines whether a string is a valid IP address.</summary>
1037       <param name="ipString">The string to validate.</param>
1038       <param name="address">The <see cref="T:System.Net.IPAddress" /> version of the string.</param>
1039       <returns>
1040         <see langword="true" /> if <paramref name="ipString" /> was able to be parsed as an IP address; otherwise, <see langword="false" />.</returns>
1041       <exception cref="T:System.ArgumentNullException">
1042         <paramref name="ipString" /> is null.</exception>
1043     </member>
1044     <member name="M:System.Net.IPAddress.TryWriteBytes(System.Span{System.Byte},System.Int32@)">
1045       <param name="destination" />
1046       <param name="bytesWritten" />
1047     </member>
1048     <member name="T:System.Net.IPEndPoint">
1049       <summary>Represents a network endpoint as an IP address and a port number.</summary>
1050     </member>
1051     <member name="M:System.Net.IPEndPoint.#ctor(System.Int64,System.Int32)">
1052       <summary>Initializes a new instance of the <see cref="T:System.Net.IPEndPoint" /> class with the specified address and port number.</summary>
1053       <param name="address">The IP address of the Internet host.</param>
1054       <param name="port">The port number associated with the <paramref name="address" />, or 0 to specify any available port. <paramref name="port" /> is in host order.</param>
1055       <exception cref="T:System.ArgumentOutOfRangeException">
1056         <paramref name="port" /> is less than <see cref="F:System.Net.IPEndPoint.MinPort" />.
1057 -or-
1058 <paramref name="port" /> is greater than <see cref="F:System.Net.IPEndPoint.MaxPort" />.
1059 -or-
1060 <paramref name="address" /> is less than 0 or greater than 0x00000000FFFFFFFF.</exception>
1061     </member>
1062     <member name="M:System.Net.IPEndPoint.#ctor(System.Net.IPAddress,System.Int32)">
1063       <summary>Initializes a new instance of the <see cref="T:System.Net.IPEndPoint" /> class with the specified address and port number.</summary>
1064       <param name="address">An <see cref="T:System.Net.IPAddress" />.</param>
1065       <param name="port">The port number associated with the <paramref name="address" />, or 0 to specify any available port. <paramref name="port" /> is in host order.</param>
1066       <exception cref="T:System.ArgumentNullException">
1067         <paramref name="address" /> is <see langword="null" />.</exception>
1068       <exception cref="T:System.ArgumentOutOfRangeException">
1069         <paramref name="port" /> is less than <see cref="F:System.Net.IPEndPoint.MinPort" />.
1070 -or-
1071 <paramref name="port" /> is greater than <see cref="F:System.Net.IPEndPoint.MaxPort" />.
1072 -or-
1073 <paramref name="address" /> is less than 0 or greater than 0x00000000FFFFFFFF.</exception>
1074     </member>
1075     <member name="P:System.Net.IPEndPoint.Address">
1076       <summary>Gets or sets the IP address of the endpoint.</summary>
1077       <returns>An <see cref="T:System.Net.IPAddress" /> instance containing the IP address of the endpoint.</returns>
1078     </member>
1079     <member name="P:System.Net.IPEndPoint.AddressFamily">
1080       <summary>Gets the Internet Protocol (IP) address family.</summary>
1081       <returns>Returns <see cref="F:System.Net.Sockets.AddressFamily.InterNetwork" />.</returns>
1082     </member>
1083     <member name="M:System.Net.IPEndPoint.Create(System.Net.SocketAddress)">
1084       <summary>Creates an endpoint from a socket address.</summary>
1085       <param name="socketAddress">The <see cref="T:System.Net.SocketAddress" /> to use for the endpoint.</param>
1086       <returns>An <see cref="T:System.Net.EndPoint" /> instance using the specified socket address.</returns>
1087       <exception cref="T:System.ArgumentException">The AddressFamily of <paramref name="socketAddress" /> is not equal to the AddressFamily of the current instance.
1088 -or-
1089 <paramref name="socketAddress" />.Size &lt; 8.</exception>
1090     </member>
1091     <member name="M:System.Net.IPEndPoint.Equals(System.Object)">
1092       <summary>Determines whether the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />.</summary>
1093       <param name="comparand">The <see cref="T:System.Object" /> to compare with the current <see cref="T:System.Object" />.</param>
1094       <returns>
1095         <see langword="true" /> if the specified <see cref="T:System.Object" /> is equal to the current <see cref="T:System.Object" />; otherwise, <see langword="false" />.</returns>
1096     </member>
1097     <member name="M:System.Net.IPEndPoint.GetHashCode">
1098       <summary>Returns a hash value for a <see cref="T:System.Net.IPEndPoint" /> instance.</summary>
1099       <returns>An integer hash value.</returns>
1100     </member>
1101     <member name="F:System.Net.IPEndPoint.MaxPort">
1102       <summary>Specifies the maximum value that can be assigned to the <see cref="P:System.Net.IPEndPoint.Port" /> property. The MaxPort value is set to 0x0000FFFF. This field is read-only.</summary>
1103     </member>
1104     <member name="F:System.Net.IPEndPoint.MinPort">
1105       <summary>Specifies the minimum value that can be assigned to the <see cref="P:System.Net.IPEndPoint.Port" /> property. This field is read-only.</summary>
1106     </member>
1107     <member name="M:System.Net.IPEndPoint.Parse(System.ReadOnlySpan{System.Char})">
1108       <summary>Converts an IP network endpoint (address and port) represented as a read-only span to an <see cref="T:System.Net.IPEndPoint" /> instance.</summary>
1109       <param name="s">A read-only span that contains an IP endpoint in dotted-quad notation or network byte order for IPv4 and in colon-hexadecimal notation for IPv6.</param>
1110       <returns>The object representation of an IP network endpoint.</returns>
1111       <exception cref="T:System.ArgumentNullException">
1112         <paramref name="s" /> is <see langword="null" />.</exception>
1113       <exception cref="T:System.FormatException">
1114         <paramref name="s" /> is not a valid IP endpoint.</exception>
1115     </member>
1116     <member name="M:System.Net.IPEndPoint.Parse(System.String)">
1117       <summary>Converts an IP network endpoint (address and port) represented as a string to an <see cref="T:System.Net.IPEndPoint" /> instance.</summary>
1118       <param name="s">A string that contains an IP endpoint in dotted-quad notation or network byte order for IPv4 and in colon-hexadecimal notation for IPv6.</param>
1119       <returns>The object representation of an IP network endpoint.</returns>
1120       <exception cref="T:System.ArgumentNullException">
1121         <paramref name="s" /> is <see langword="null" />.</exception>
1122       <exception cref="T:System.FormatException">
1123         <paramref name="s" /> is not a valid IP endpoint.</exception>
1124     </member>
1125     <member name="P:System.Net.IPEndPoint.Port">
1126       <summary>Gets or sets the port number of the endpoint.</summary>
1127       <returns>An integer value in the range <see cref="F:System.Net.IPEndPoint.MinPort" /> to <see cref="F:System.Net.IPEndPoint.MaxPort" /> indicating the port number of the endpoint.</returns>
1128       <exception cref="T:System.ArgumentOutOfRangeException">The value that was specified for a set operation is less than <see cref="F:System.Net.IPEndPoint.MinPort" /> or greater than <see cref="F:System.Net.IPEndPoint.MaxPort" />.</exception>
1129     </member>
1130     <member name="M:System.Net.IPEndPoint.Serialize">
1131       <summary>Serializes endpoint information into a <see cref="T:System.Net.SocketAddress" /> instance.</summary>
1132       <returns>A <see cref="T:System.Net.SocketAddress" /> instance containing the socket address for the endpoint.</returns>
1133     </member>
1134     <member name="M:System.Net.IPEndPoint.ToString">
1135       <summary>Returns the IP address and port number of the specified endpoint.</summary>
1136       <returns>A string containing the IP address and the port number of the specified endpoint (for example, 192.168.1.2:80).</returns>
1137     </member>
1138     <member name="M:System.Net.IPEndPoint.TryParse(System.ReadOnlySpan{System.Char},System.Net.IPEndPoint@)">
1139       <summary>Tries to convert an IP network endpoint (address and port) represented as a read-only span to its <see cref="T:System.Net.IPEndPoint" /> equivalent, and returns a value that indicates whether the conversion succeeded.</summary>
1140       <param name="s">The IP endpoint to validate.</param>
1141       <param name="result">When this method returns, the <see cref="T:System.Net.IPEndPoint" /> version of <paramref name="s" />.</param>
1142       <returns>
1143         <see langword="true" /> if <paramref name="s" /> can be parsed as an IP endpoint; otherwise, <see langword="false" />.</returns>
1144     </member>
1145     <member name="M:System.Net.IPEndPoint.TryParse(System.String,System.Net.IPEndPoint@)">
1146       <summary>Tries to convert an IP network endpoint (address and port) represented as a string to its <see cref="T:System.Net.IPEndPoint" /> equivalent, and returns a value that indicates whether the conversion succeeded.</summary>
1147       <param name="s">The IP endpoint to validate.</param>
1148       <param name="result">When this method returns, the <see cref="T:System.Net.IPEndPoint" /> version of <paramref name="s" />.</param>
1149       <returns>
1150         <see langword="true" /> if <paramref name="s" /> can be parsed as an IP endpoint; otherwise, <see langword="false" />.</returns>
1151     </member>
1152     <member name="T:System.Net.IWebProxy">
1153       <summary>Provides the base interface for implementation of proxy access for the <see cref="T:System.Net.WebRequest" /> class.</summary>
1154     </member>
1155     <member name="P:System.Net.IWebProxy.Credentials">
1156       <summary>The credentials to submit to the proxy server for authentication.</summary>
1157       <returns>An <see cref="T:System.Net.ICredentials" /> instance that contains the credentials that are needed to authenticate a request to the proxy server.</returns>
1158     </member>
1159     <member name="M:System.Net.IWebProxy.GetProxy(System.Uri)">
1160       <summary>Returns the URI of a proxy.</summary>
1161       <param name="destination">A <see cref="T:System.Uri" /> that specifies the requested Internet resource.</param>
1162       <returns>A <see cref="T:System.Uri" /> instance that contains the URI of the proxy used to contact <paramref name="destination" />.</returns>
1163     </member>
1164     <member name="M:System.Net.IWebProxy.IsBypassed(System.Uri)">
1165       <summary>Indicates that the proxy should not be used for the specified host.</summary>
1166       <param name="host">The <see cref="T:System.Uri" /> of the host to check for proxy use.</param>
1167       <returns>
1168         <see langword="true" /> if the proxy server should not be used for <paramref name="host" />; otherwise, <see langword="false" />.</returns>
1169     </member>
1170     <member name="T:System.Net.NetworkCredential">
1171       <summary>Provides credentials for password-based authentication schemes such as basic, digest, NTLM, and Kerberos authentication.</summary>
1172     </member>
1173     <member name="M:System.Net.NetworkCredential.#ctor">
1174       <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkCredential" /> class.</summary>
1175     </member>
1176     <member name="M:System.Net.NetworkCredential.#ctor(System.String,System.Security.SecureString)">
1177       <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkCredential" /> class with the specified user name and password.</summary>
1178       <param name="userName">The user name associated with the credentials.</param>
1179       <param name="password">The password for the user name associated with the credentials.</param>
1180       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Security.SecureString" /> class is not supported on this platform.</exception>
1181     </member>
1182     <member name="M:System.Net.NetworkCredential.#ctor(System.String,System.Security.SecureString,System.String)">
1183       <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkCredential" /> class with the specified user name, password, and domain.</summary>
1184       <param name="userName">The user name associated with the credentials.</param>
1185       <param name="password">The password for the user name associated with the credentials.</param>
1186       <param name="domain">The domain associated with these credentials.</param>
1187       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Security.SecureString" /> class is not supported on this platform.</exception>
1188     </member>
1189     <member name="M:System.Net.NetworkCredential.#ctor(System.String,System.String)">
1190       <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkCredential" /> class with the specified user name and password.</summary>
1191       <param name="userName">The user name associated with the credentials.</param>
1192       <param name="password">The password for the user name associated with the credentials.</param>
1193     </member>
1194     <member name="M:System.Net.NetworkCredential.#ctor(System.String,System.String,System.String)">
1195       <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkCredential" /> class with the specified user name, password, and domain.</summary>
1196       <param name="userName">The user name associated with the credentials.</param>
1197       <param name="password">The password for the user name associated with the credentials.</param>
1198       <param name="domain">The domain associated with these credentials.</param>
1199     </member>
1200     <member name="P:System.Net.NetworkCredential.Domain">
1201       <summary>Gets or sets the domain or computer name that verifies the credentials.</summary>
1202       <returns>The name of the domain associated with the credentials.</returns>
1203     </member>
1204     <member name="M:System.Net.NetworkCredential.GetCredential(System.String,System.Int32,System.String)">
1205       <summary>Returns an instance of the <see cref="T:System.Net.NetworkCredential" /> class for the specified host, port, and authentication type.</summary>
1206       <param name="host">The host computer that authenticates the client.</param>
1207       <param name="port">The port on the <paramref name="host" /> that the client communicates with.</param>
1208       <param name="authenticationType">The type of authentication requested, as defined in the <see cref="P:System.Net.IAuthenticationModule.AuthenticationType" /> property.</param>
1209       <returns>A <see cref="T:System.Net.NetworkCredential" /> for the specified host, port, and authentication protocol, or <see langword="null" /> if there are no credentials available for the specified host, port, and authentication protocol.</returns>
1210     </member>
1211     <member name="M:System.Net.NetworkCredential.GetCredential(System.Uri,System.String)">
1212       <summary>Returns an instance of the <see cref="T:System.Net.NetworkCredential" /> class for the specified Uniform Resource Identifier (URI) and authentication type.</summary>
1213       <param name="uri">The URI that the client provides authentication for.</param>
1214       <param name="authType">The type of authentication requested, as defined in the <see cref="P:System.Net.IAuthenticationModule.AuthenticationType" /> property.</param>
1215       <returns>A <see cref="T:System.Net.NetworkCredential" /> object.</returns>
1216     </member>
1217     <member name="P:System.Net.NetworkCredential.Password">
1218       <summary>Gets or sets the password for the user name associated with the credentials.</summary>
1219       <returns>The password associated with the credentials. If this <see cref="T:System.Net.NetworkCredential" /> instance was initialized with the <paramref name="password" /> parameter set to <see langword="null" />, then the <see cref="P:System.Net.NetworkCredential.Password" /> property will return an empty string.</returns>
1220     </member>
1221     <member name="P:System.Net.NetworkCredential.SecurePassword">
1222       <summary>Gets or sets the password as a <see cref="T:System.Security.SecureString" /> instance.</summary>
1223       <returns>The password for the user name associated with the credentials.</returns>
1224       <exception cref="T:System.NotSupportedException">The <see cref="T:System.Security.SecureString" /> class is not supported on this platform.</exception>
1225     </member>
1226     <member name="P:System.Net.NetworkCredential.UserName">
1227       <summary>Gets or sets the user name associated with the credentials.</summary>
1228       <returns>The user name associated with the credentials.</returns>
1229     </member>
1230     <member name="T:System.Net.NetworkInformation.IPAddressCollection">
1231       <summary>Stores a set of <see cref="T:System.Net.IPAddress" /> types.</summary>
1232     </member>
1233     <member name="M:System.Net.NetworkInformation.IPAddressCollection.#ctor">
1234       <summary>Initializes a new instance of the <see cref="T:System.Net.NetworkInformation.IPAddressCollection" /> class.</summary>
1235     </member>
1236     <member name="M:System.Net.NetworkInformation.IPAddressCollection.Add(System.Net.IPAddress)">
1237       <summary>Throws a <see cref="T:System.NotSupportedException" /> because this operation is not supported for this collection.</summary>
1238       <param name="address">The object to be added to the collection.</param>
1239     </member>
1240     <member name="M:System.Net.NetworkInformation.IPAddressCollection.Clear">
1241       <summary>Throws a <see cref="T:System.NotSupportedException" /> because this operation is not supported for this collection.</summary>
1242     </member>
1243     <member name="M:System.Net.NetworkInformation.IPAddressCollection.Contains(System.Net.IPAddress)">
1244       <summary>Checks whether the collection contains the specified <see cref="T:System.Net.IPAddress" /> object.</summary>
1245       <param name="address">The <see cref="T:System.Net.IPAddress" /> object to be searched in the collection.</param>
1246       <returns>
1247         <see langword="true" /> if the <see cref="T:System.Net.IPAddress" /> object exists in the collection; otherwise, <see langword="false" />.</returns>
1248     </member>
1249     <member name="M:System.Net.NetworkInformation.IPAddressCollection.CopyTo(System.Net.IPAddress[],System.Int32)">
1250       <summary>Copies the elements in this collection to a one-dimensional array of type <see cref="T:System.Net.IPAddress" />.</summary>
1251       <param name="array">A one-dimensional array that receives a copy of the collection.</param>
1252       <param name="offset">The zero-based index in <paramref name="array" /> at which the copy begins.</param>
1253       <exception cref="T:System.ArgumentNullException">
1254         <paramref name="array" /> is <see langword="null" />.</exception>
1255       <exception cref="T:System.ArgumentOutOfRangeException">
1256         <paramref name="offset" /> is less than zero.</exception>
1257       <exception cref="T:System.ArgumentException">
1258         <paramref name="array" /> is multidimensional.
1259
1260 -or-
1261 The number of elements in this <see cref="T:System.Net.NetworkInformation.IPAddressCollection" /> is greater than the available space from <paramref name="offset" /> to the end of the destination <paramref name="array" />.</exception>
1262       <exception cref="T:System.InvalidCastException">The elements in this <see cref="T:System.Net.NetworkInformation.IPAddressCollection" /> cannot be cast automatically to the type of the destination <paramref name="array" />.</exception>
1263     </member>
1264     <member name="P:System.Net.NetworkInformation.IPAddressCollection.Count">
1265       <summary>Gets the number of <see cref="T:System.Net.IPAddress" /> types in this collection.</summary>
1266       <returns>An <see cref="T:System.Int32" /> value that contains the number of <see cref="T:System.Net.IPAddress" /> types in this collection.</returns>
1267     </member>
1268     <member name="M:System.Net.NetworkInformation.IPAddressCollection.GetEnumerator">
1269       <summary>Returns an object that can be used to iterate through this collection.</summary>
1270       <returns>An object that implements the <see cref="T:System.Collections.IEnumerator" /> interface and provides access to the <see cref="T:System.Net.NetworkInformation.IPAddressCollection" /> types in this collection.</returns>
1271     </member>
1272     <member name="P:System.Net.NetworkInformation.IPAddressCollection.IsReadOnly">
1273       <summary>Gets a value that indicates whether access to this collection is read-only.</summary>
1274       <returns>
1275         <see langword="true" /> in all cases.</returns>
1276     </member>
1277     <member name="P:System.Net.NetworkInformation.IPAddressCollection.Item(System.Int32)">
1278       <summary>Gets the <see cref="T:System.Net.IPAddress" /> at the specific index of the collection.</summary>
1279       <param name="index">The index of interest.</param>
1280       <returns>The <see cref="T:System.Net.IPAddress" /> at the specific index in the collection.</returns>
1281     </member>
1282     <member name="M:System.Net.NetworkInformation.IPAddressCollection.Remove(System.Net.IPAddress)">
1283       <summary>Throws a <see cref="T:System.NotSupportedException" /> because this operation is not supported for this collection.</summary>
1284       <param name="address">The object to be removed.</param>
1285       <returns>Always throws a <see cref="T:System.NotSupportedException" />.</returns>
1286     </member>
1287     <member name="M:System.Net.NetworkInformation.IPAddressCollection.System#Collections#IEnumerable#GetEnumerator">
1288       <summary>Returns an object that can be used to iterate through this collection.</summary>
1289       <returns>An object that implements the <see cref="T:System.Collections.IEnumerator" /> interface and provides access to the <see cref="T:System.Net.NetworkInformation.IPAddressCollection" /> types in this collection.</returns>
1290     </member>
1291     <member name="T:System.Net.Security.AuthenticationLevel">
1292       <summary>Specifies client requirements for authentication and impersonation when using the <see cref="T:System.Net.WebRequest" /> class and derived classes to request a resource.</summary>
1293     </member>
1294     <member name="F:System.Net.Security.AuthenticationLevel.MutualAuthRequested">
1295       <summary>The client and server should be authenticated. The request does not fail if the server is not authenticated. To determine whether mutual authentication occurred, check the value of the <see cref="P:System.Net.WebResponse.IsMutuallyAuthenticated" /> property.</summary>
1296     </member>
1297     <member name="F:System.Net.Security.AuthenticationLevel.MutualAuthRequired">
1298       <summary>The client and server should be authenticated. If the server is not authenticated, your application will receive an <see cref="T:System.IO.IOException" /> with a <see cref="T:System.Net.ProtocolViolationException" /> inner exception that indicates that mutual authentication failed.</summary>
1299     </member>
1300     <member name="F:System.Net.Security.AuthenticationLevel.None">
1301       <summary>No authentication is required for the client and server.</summary>
1302     </member>
1303     <member name="T:System.Net.Security.SslPolicyErrors">
1304       <summary>Enumerates Secure Socket Layer (SSL) policy errors.</summary>
1305     </member>
1306     <member name="F:System.Net.Security.SslPolicyErrors.None">
1307       <summary>No SSL policy errors.</summary>
1308     </member>
1309     <member name="F:System.Net.Security.SslPolicyErrors.RemoteCertificateChainErrors">
1310       <summary>
1311         <see cref="P:System.Security.Cryptography.X509Certificates.X509Chain.ChainStatus" /> has returned a non empty array.</summary>
1312     </member>
1313     <member name="F:System.Net.Security.SslPolicyErrors.RemoteCertificateNameMismatch">
1314       <summary>Certificate name mismatch.</summary>
1315     </member>
1316     <member name="F:System.Net.Security.SslPolicyErrors.RemoteCertificateNotAvailable">
1317       <summary>Certificate not available.</summary>
1318     </member>
1319     <member name="T:System.Net.SocketAddress">
1320       <summary>Stores serialized information from <see cref="T:System.Net.EndPoint" /> derived classes.</summary>
1321     </member>
1322     <member name="M:System.Net.SocketAddress.#ctor(System.Net.Sockets.AddressFamily)">
1323       <summary>Creates a new instance of the <see cref="T:System.Net.SocketAddress" /> class for the given address family.</summary>
1324       <param name="family">An <see cref="T:System.Net.Sockets.AddressFamily" /> enumerated value.</param>
1325     </member>
1326     <member name="M:System.Net.SocketAddress.#ctor(System.Net.Sockets.AddressFamily,System.Int32)">
1327       <summary>Creates a new instance of the <see cref="T:System.Net.SocketAddress" /> class using the specified address family and buffer size.</summary>
1328       <param name="family">An <see cref="T:System.Net.Sockets.AddressFamily" /> enumerated value.</param>
1329       <param name="size">The number of bytes to allocate for the underlying buffer.</param>
1330       <exception cref="T:System.ArgumentOutOfRangeException">
1331         <paramref name="size" /> is less than 2. These 2 bytes are needed to store <paramref name="family" />.</exception>
1332     </member>
1333     <member name="M:System.Net.SocketAddress.Equals(System.Object)">
1334       <summary>Determines whether the specified <see langword="Object" /> is equal to the current <see langword="Object" />.</summary>
1335       <param name="comparand">The <see cref="T:System.Object" /> to compare with the current <see langword="Object" />.</param>
1336       <returns>
1337         <see langword="true" /> if the specified <see langword="Object" /> is equal to the current <see langword="Object" />; otherwise, <see langword="false" />.</returns>
1338     </member>
1339     <member name="P:System.Net.SocketAddress.Family">
1340       <summary>Gets the <see cref="T:System.Net.Sockets.AddressFamily" /> enumerated value of the current <see cref="T:System.Net.SocketAddress" />.</summary>
1341       <returns>One of the <see cref="T:System.Net.Sockets.AddressFamily" /> enumerated values.</returns>
1342     </member>
1343     <member name="M:System.Net.SocketAddress.GetHashCode">
1344       <summary>Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.</summary>
1345       <returns>A hash code for the current <see cref="T:System.Object" />.</returns>
1346     </member>
1347     <member name="P:System.Net.SocketAddress.Item(System.Int32)">
1348       <summary>Gets or sets the specified index element in the underlying buffer.</summary>
1349       <param name="offset">The array index element of the desired information.</param>
1350       <returns>The value of the specified index element in the underlying buffer.</returns>
1351       <exception cref="T:System.IndexOutOfRangeException">The specified index does not exist in the buffer.</exception>
1352     </member>
1353     <member name="P:System.Net.SocketAddress.Size">
1354       <summary>Gets the underlying buffer size of the <see cref="T:System.Net.SocketAddress" />.</summary>
1355       <returns>The underlying buffer size of the <see cref="T:System.Net.SocketAddress" />.</returns>
1356     </member>
1357     <member name="M:System.Net.SocketAddress.ToString">
1358       <summary>Returns information about the socket address.</summary>
1359       <returns>A string that contains information about the <see cref="T:System.Net.SocketAddress" />.</returns>
1360     </member>
1361     <member name="T:System.Net.Sockets.AddressFamily">
1362       <summary>Specifies the addressing scheme that an instance of the <see cref="T:System.Net.Sockets.Socket" /> class can use.</summary>
1363     </member>
1364     <member name="F:System.Net.Sockets.AddressFamily.AppleTalk">
1365       <summary>AppleTalk address.</summary>
1366     </member>
1367     <member name="F:System.Net.Sockets.AddressFamily.Atm">
1368       <summary>Native ATM services address.</summary>
1369     </member>
1370     <member name="F:System.Net.Sockets.AddressFamily.Banyan">
1371       <summary>Banyan address.</summary>
1372     </member>
1373     <member name="F:System.Net.Sockets.AddressFamily.Ccitt">
1374       <summary>Addresses for CCITT protocols, such as X.25.</summary>
1375     </member>
1376     <member name="F:System.Net.Sockets.AddressFamily.Chaos">
1377       <summary>Address for MIT CHAOS protocols.</summary>
1378     </member>
1379     <member name="F:System.Net.Sockets.AddressFamily.Cluster">
1380       <summary>Address for Microsoft cluster products.</summary>
1381     </member>
1382     <member name="F:System.Net.Sockets.AddressFamily.ControllerAreaNetwork">
1383       <summary>Controller Area Network address.</summary>
1384     </member>
1385     <member name="F:System.Net.Sockets.AddressFamily.DataKit">
1386       <summary>Address for Datakit protocols.</summary>
1387     </member>
1388     <member name="F:System.Net.Sockets.AddressFamily.DataLink">
1389       <summary>Direct data-link interface address.</summary>
1390     </member>
1391     <member name="F:System.Net.Sockets.AddressFamily.DecNet">
1392       <summary>DECnet address.</summary>
1393     </member>
1394     <member name="F:System.Net.Sockets.AddressFamily.Ecma">
1395       <summary>European Computer Manufacturers Association (ECMA) address.</summary>
1396     </member>
1397     <member name="F:System.Net.Sockets.AddressFamily.FireFox">
1398       <summary>FireFox address.</summary>
1399     </member>
1400     <member name="F:System.Net.Sockets.AddressFamily.HyperChannel">
1401       <summary>NSC Hyperchannel address.</summary>
1402     </member>
1403     <member name="F:System.Net.Sockets.AddressFamily.Ieee12844">
1404       <summary>IEEE 1284.4 workgroup address.</summary>
1405     </member>
1406     <member name="F:System.Net.Sockets.AddressFamily.ImpLink">
1407       <summary>ARPANET IMP address.</summary>
1408     </member>
1409     <member name="F:System.Net.Sockets.AddressFamily.InterNetwork">
1410       <summary>Address for IP version 4.</summary>
1411     </member>
1412     <member name="F:System.Net.Sockets.AddressFamily.InterNetworkV6">
1413       <summary>Address for IP version 6.</summary>
1414     </member>
1415     <member name="F:System.Net.Sockets.AddressFamily.Ipx">
1416       <summary>IPX or SPX address.</summary>
1417     </member>
1418     <member name="F:System.Net.Sockets.AddressFamily.Irda">
1419       <summary>IrDA address.</summary>
1420     </member>
1421     <member name="F:System.Net.Sockets.AddressFamily.Iso">
1422       <summary>Address for ISO protocols.</summary>
1423     </member>
1424     <member name="F:System.Net.Sockets.AddressFamily.Lat">
1425       <summary>LAT address.</summary>
1426     </member>
1427     <member name="F:System.Net.Sockets.AddressFamily.Max">
1428       <summary>MAX address.</summary>
1429     </member>
1430     <member name="F:System.Net.Sockets.AddressFamily.NetBios">
1431       <summary>NetBios address.</summary>
1432     </member>
1433     <member name="F:System.Net.Sockets.AddressFamily.NetworkDesigners">
1434       <summary>Address for Network Designers OSI gateway-enabled protocols.</summary>
1435     </member>
1436     <member name="F:System.Net.Sockets.AddressFamily.NS">
1437       <summary>Address for Xerox NS protocols.</summary>
1438     </member>
1439     <member name="F:System.Net.Sockets.AddressFamily.Osi">
1440       <summary>Address for OSI protocols.</summary>
1441     </member>
1442     <member name="F:System.Net.Sockets.AddressFamily.Packet">
1443       <summary>Low-level Packet address.</summary>
1444     </member>
1445     <member name="F:System.Net.Sockets.AddressFamily.Pup">
1446       <summary>Address for PUP protocols.</summary>
1447     </member>
1448     <member name="F:System.Net.Sockets.AddressFamily.Sna">
1449       <summary>IBM SNA address.</summary>
1450     </member>
1451     <member name="F:System.Net.Sockets.AddressFamily.Unix">
1452       <summary>Unix local to host address.</summary>
1453     </member>
1454     <member name="F:System.Net.Sockets.AddressFamily.Unknown">
1455       <summary>Unknown address family.</summary>
1456     </member>
1457     <member name="F:System.Net.Sockets.AddressFamily.Unspecified">
1458       <summary>Unspecified address family.</summary>
1459     </member>
1460     <member name="F:System.Net.Sockets.AddressFamily.VoiceView">
1461       <summary>VoiceView address.</summary>
1462     </member>
1463     <member name="T:System.Net.Sockets.SocketError">
1464       <summary>Defines error codes for the <see cref="T:System.Net.Sockets.Socket" /> class.</summary>
1465     </member>
1466     <member name="F:System.Net.Sockets.SocketError.AccessDenied">
1467       <summary>An attempt was made to access a <see cref="T:System.Net.Sockets.Socket" /> in a way that is forbidden by its access permissions.</summary>
1468     </member>
1469     <member name="F:System.Net.Sockets.SocketError.AddressAlreadyInUse">
1470       <summary>Only one use of an address is normally permitted.</summary>
1471     </member>
1472     <member name="F:System.Net.Sockets.SocketError.AddressFamilyNotSupported">
1473       <summary>The address family specified is not supported. This error is returned if the IPv6 address family was specified and the IPv6 stack is not installed on the local machine. This error is returned if the IPv4 address family was specified and the IPv4 stack is not installed on the local machine.</summary>
1474     </member>
1475     <member name="F:System.Net.Sockets.SocketError.AddressNotAvailable">
1476       <summary>The selected IP address is not valid in this context.</summary>
1477     </member>
1478     <member name="F:System.Net.Sockets.SocketError.AlreadyInProgress">
1479       <summary>The nonblocking <see cref="T:System.Net.Sockets.Socket" /> already has an operation in progress.</summary>
1480     </member>
1481     <member name="F:System.Net.Sockets.SocketError.ConnectionAborted">
1482       <summary>The connection was aborted by the .NET Framework or the underlying socket provider.</summary>
1483     </member>
1484     <member name="F:System.Net.Sockets.SocketError.ConnectionRefused">
1485       <summary>The remote host is actively refusing a connection.</summary>
1486     </member>
1487     <member name="F:System.Net.Sockets.SocketError.ConnectionReset">
1488       <summary>The connection was reset by the remote peer.</summary>
1489     </member>
1490     <member name="F:System.Net.Sockets.SocketError.DestinationAddressRequired">
1491       <summary>A required address was omitted from an operation on a <see cref="T:System.Net.Sockets.Socket" />.</summary>
1492     </member>
1493     <member name="F:System.Net.Sockets.SocketError.Disconnecting">
1494       <summary>A graceful shutdown is in progress.</summary>
1495     </member>
1496     <member name="F:System.Net.Sockets.SocketError.Fault">
1497       <summary>An invalid pointer address was detected by the underlying socket provider.</summary>
1498     </member>
1499     <member name="F:System.Net.Sockets.SocketError.HostDown">
1500       <summary>The operation failed because the remote host is down.</summary>
1501     </member>
1502     <member name="F:System.Net.Sockets.SocketError.HostNotFound">
1503       <summary>No such host is known. The name is not an official host name or alias.</summary>
1504     </member>
1505     <member name="F:System.Net.Sockets.SocketError.HostUnreachable">
1506       <summary>There is no network route to the specified host.</summary>
1507     </member>
1508     <member name="F:System.Net.Sockets.SocketError.InProgress">
1509       <summary>A blocking operation is in progress.</summary>
1510     </member>
1511     <member name="F:System.Net.Sockets.SocketError.Interrupted">
1512       <summary>A blocking <see cref="T:System.Net.Sockets.Socket" /> call was canceled.</summary>
1513     </member>
1514     <member name="F:System.Net.Sockets.SocketError.InvalidArgument">
1515       <summary>An invalid argument was supplied to a <see cref="T:System.Net.Sockets.Socket" /> member.</summary>
1516     </member>
1517     <member name="F:System.Net.Sockets.SocketError.IOPending">
1518       <summary>The application has initiated an overlapped operation that cannot be completed immediately.</summary>
1519     </member>
1520     <member name="F:System.Net.Sockets.SocketError.IsConnected">
1521       <summary>The <see cref="T:System.Net.Sockets.Socket" /> is already connected.</summary>
1522     </member>
1523     <member name="F:System.Net.Sockets.SocketError.MessageSize">
1524       <summary>The datagram is too long.</summary>
1525     </member>
1526     <member name="F:System.Net.Sockets.SocketError.NetworkDown">
1527       <summary>The network is not available.</summary>
1528     </member>
1529     <member name="F:System.Net.Sockets.SocketError.NetworkReset">
1530       <summary>The application tried to set <see cref="F:System.Net.Sockets.SocketOptionName.KeepAlive" /> on a connection that has already timed out.</summary>
1531     </member>
1532     <member name="F:System.Net.Sockets.SocketError.NetworkUnreachable">
1533       <summary>No route to the remote host exists.</summary>
1534     </member>
1535     <member name="F:System.Net.Sockets.SocketError.NoBufferSpaceAvailable">
1536       <summary>No free buffer space is available for a <see cref="T:System.Net.Sockets.Socket" /> operation.</summary>
1537     </member>
1538     <member name="F:System.Net.Sockets.SocketError.NoData">
1539       <summary>The requested name or IP address was not found on the name server.</summary>
1540     </member>
1541     <member name="F:System.Net.Sockets.SocketError.NoRecovery">
1542       <summary>The error is unrecoverable or the requested database cannot be located.</summary>
1543     </member>
1544     <member name="F:System.Net.Sockets.SocketError.NotConnected">
1545       <summary>The application tried to send or receive data, and the <see cref="T:System.Net.Sockets.Socket" /> is not connected.</summary>
1546     </member>
1547     <member name="F:System.Net.Sockets.SocketError.NotInitialized">
1548       <summary>The underlying socket provider has not been initialized.</summary>
1549     </member>
1550     <member name="F:System.Net.Sockets.SocketError.NotSocket">
1551       <summary>A <see cref="T:System.Net.Sockets.Socket" /> operation was attempted on a non-socket.</summary>
1552     </member>
1553     <member name="F:System.Net.Sockets.SocketError.OperationAborted">
1554       <summary>The overlapped operation was aborted due to the closure of the <see cref="T:System.Net.Sockets.Socket" />.</summary>
1555     </member>
1556     <member name="F:System.Net.Sockets.SocketError.OperationNotSupported">
1557       <summary>The address family is not supported by the protocol family.</summary>
1558     </member>
1559     <member name="F:System.Net.Sockets.SocketError.ProcessLimit">
1560       <summary>Too many processes are using the underlying socket provider.</summary>
1561     </member>
1562     <member name="F:System.Net.Sockets.SocketError.ProtocolFamilyNotSupported">
1563       <summary>The protocol family is not implemented or has not been configured.</summary>
1564     </member>
1565     <member name="F:System.Net.Sockets.SocketError.ProtocolNotSupported">
1566       <summary>The protocol is not implemented or has not been configured.</summary>
1567     </member>
1568     <member name="F:System.Net.Sockets.SocketError.ProtocolOption">
1569       <summary>An unknown, invalid, or unsupported option or level was used with a <see cref="T:System.Net.Sockets.Socket" />.</summary>
1570     </member>
1571     <member name="F:System.Net.Sockets.SocketError.ProtocolType">
1572       <summary>The protocol type is incorrect for this <see cref="T:System.Net.Sockets.Socket" />.</summary>
1573     </member>
1574     <member name="F:System.Net.Sockets.SocketError.Shutdown">
1575       <summary>A request to send or receive data was disallowed because the <see cref="T:System.Net.Sockets.Socket" /> has already been closed.</summary>
1576     </member>
1577     <member name="F:System.Net.Sockets.SocketError.SocketError">
1578       <summary>An unspecified <see cref="T:System.Net.Sockets.Socket" /> error has occurred.</summary>
1579     </member>
1580     <member name="F:System.Net.Sockets.SocketError.SocketNotSupported">
1581       <summary>The support for the specified socket type does not exist in this address family.</summary>
1582     </member>
1583     <member name="F:System.Net.Sockets.SocketError.Success">
1584       <summary>The <see cref="T:System.Net.Sockets.Socket" /> operation succeeded.</summary>
1585     </member>
1586     <member name="F:System.Net.Sockets.SocketError.SystemNotReady">
1587       <summary>The network subsystem is unavailable.</summary>
1588     </member>
1589     <member name="F:System.Net.Sockets.SocketError.TimedOut">
1590       <summary>The connection attempt timed out, or the connected host has failed to respond.</summary>
1591     </member>
1592     <member name="F:System.Net.Sockets.SocketError.TooManyOpenSockets">
1593       <summary>There are too many open sockets in the underlying socket provider.</summary>
1594     </member>
1595     <member name="F:System.Net.Sockets.SocketError.TryAgain">
1596       <summary>The name of the host could not be resolved. Try again later.</summary>
1597     </member>
1598     <member name="F:System.Net.Sockets.SocketError.TypeNotFound">
1599       <summary>The specified class was not found.</summary>
1600     </member>
1601     <member name="F:System.Net.Sockets.SocketError.VersionNotSupported">
1602       <summary>The version of the underlying socket provider is out of range.</summary>
1603     </member>
1604     <member name="F:System.Net.Sockets.SocketError.WouldBlock">
1605       <summary>An operation on a nonblocking socket cannot be completed immediately.</summary>
1606     </member>
1607     <member name="T:System.Net.Sockets.SocketException">
1608       <summary>The exception that is thrown when a socket error occurs.</summary>
1609     </member>
1610     <member name="M:System.Net.Sockets.SocketException.#ctor">
1611       <summary>Initializes a new instance of the <see cref="T:System.Net.Sockets.SocketException" /> class with the last operating system error code.</summary>
1612     </member>
1613     <member name="M:System.Net.Sockets.SocketException.#ctor(System.Int32)">
1614       <summary>Initializes a new instance of the <see cref="T:System.Net.Sockets.SocketException" /> class with the specified error code.</summary>
1615       <param name="errorCode">The error code that indicates the error that occurred.</param>
1616     </member>
1617     <member name="M:System.Net.Sockets.SocketException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
1618       <summary>Initializes a new instance of the <see cref="T:System.Net.Sockets.SocketException" /> class from the specified instances of the <see cref="T:System.Runtime.Serialization.SerializationInfo" /> and <see cref="T:System.Runtime.Serialization.StreamingContext" /> classes.</summary>
1619       <param name="serializationInfo">A <see cref="T:System.Runtime.Serialization.SerializationInfo" /> instance that contains the information that is required to serialize the new <see cref="T:System.Net.Sockets.SocketException" /> instance.</param>
1620       <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.Sockets.SocketException" /> instance.</param>
1621     </member>
1622     <member name="P:System.Net.Sockets.SocketException.ErrorCode">
1623       <summary>Gets the error code that is associated with this exception.</summary>
1624       <returns>An integer error code that is associated with this exception.</returns>
1625     </member>
1626     <member name="P:System.Net.Sockets.SocketException.Message">
1627       <summary>Gets the error message that is associated with this exception.</summary>
1628       <returns>A string that contains the error message.</returns>
1629     </member>
1630     <member name="P:System.Net.Sockets.SocketException.SocketErrorCode">
1631       <summary>Gets the error code that is associated with this exception.</summary>
1632       <returns>An integer error code that is associated with this exception.</returns>
1633     </member>
1634     <member name="T:System.Net.TransportContext">
1635       <summary>The <see cref="T:System.Net.TransportContext" /> class provides additional context about the underlying transport layer.</summary>
1636     </member>
1637     <member name="M:System.Net.TransportContext.#ctor">
1638       <summary>Creates a new instance of the <see cref="T:System.Net.TransportContext" /> class.</summary>
1639     </member>
1640     <member name="M:System.Net.TransportContext.GetChannelBinding(System.Security.Authentication.ExtendedProtection.ChannelBindingKind)">
1641       <summary>Retrieves the requested channel binding.</summary>
1642       <param name="kind">The type of channel binding to retrieve.</param>
1643       <returns>The requested <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBinding" />, or <see langword="null" /> if the channel binding is not supported by the current transport or by the operating system.</returns>
1644       <exception cref="T:System.NotSupportedException">
1645         <paramref name="kind" /> is must be <see cref="F:System.Security.Authentication.ExtendedProtection.ChannelBindingKind.Endpoint" /> for use with the <see cref="T:System.Net.TransportContext" /> retrieved from the <see cref="P:System.Net.HttpListenerRequest.TransportContext" /> property.</exception>
1646     </member>
1647     <member name="T:System.Security.Authentication.CipherAlgorithmType">
1648       <summary>Defines the possible cipher algorithms for the <see cref="T:System.Net.Security.SslStream" /> class.</summary>
1649     </member>
1650     <member name="F:System.Security.Authentication.CipherAlgorithmType.Aes">
1651       <summary>The Advanced Encryption Standard (AES) algorithm.</summary>
1652     </member>
1653     <member name="F:System.Security.Authentication.CipherAlgorithmType.Aes128">
1654       <summary>The Advanced Encryption Standard (AES) algorithm with a 128 bit key.</summary>
1655     </member>
1656     <member name="F:System.Security.Authentication.CipherAlgorithmType.Aes192">
1657       <summary>The Advanced Encryption Standard (AES) algorithm with a 192 bit key.</summary>
1658     </member>
1659     <member name="F:System.Security.Authentication.CipherAlgorithmType.Aes256">
1660       <summary>The Advanced Encryption Standard (AES) algorithm with a 256 bit key.</summary>
1661     </member>
1662     <member name="F:System.Security.Authentication.CipherAlgorithmType.Des">
1663       <summary>The Data Encryption Standard (DES) algorithm.</summary>
1664     </member>
1665     <member name="F:System.Security.Authentication.CipherAlgorithmType.None">
1666       <summary>No encryption algorithm is used.</summary>
1667     </member>
1668     <member name="F:System.Security.Authentication.CipherAlgorithmType.Null">
1669       <summary>No encryption is used with a Null cipher algorithm.</summary>
1670     </member>
1671     <member name="F:System.Security.Authentication.CipherAlgorithmType.Rc2">
1672       <summary>Rivest's Code 2 (RC2) algorithm.</summary>
1673     </member>
1674     <member name="F:System.Security.Authentication.CipherAlgorithmType.Rc4">
1675       <summary>Rivest's Code 4 (RC4) algorithm.</summary>
1676     </member>
1677     <member name="F:System.Security.Authentication.CipherAlgorithmType.TripleDes">
1678       <summary>The Triple Data Encryption Standard (3DES) algorithm.</summary>
1679     </member>
1680     <member name="T:System.Security.Authentication.ExchangeAlgorithmType">
1681       <summary>Specifies the algorithm used to create keys shared by the client and server.</summary>
1682     </member>
1683     <member name="F:System.Security.Authentication.ExchangeAlgorithmType.DiffieHellman">
1684       <summary>The Diffie Hellman ephemeral key exchange algorithm.</summary>
1685     </member>
1686     <member name="F:System.Security.Authentication.ExchangeAlgorithmType.None">
1687       <summary>No key exchange algorithm is used.</summary>
1688     </member>
1689     <member name="F:System.Security.Authentication.ExchangeAlgorithmType.RsaKeyX">
1690       <summary>The RSA public-key exchange algorithm.</summary>
1691     </member>
1692     <member name="F:System.Security.Authentication.ExchangeAlgorithmType.RsaSign">
1693       <summary>The RSA public-key signature algorithm.</summary>
1694     </member>
1695     <member name="T:System.Security.Authentication.ExtendedProtection.ChannelBinding">
1696       <summary>The <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBinding" /> class encapsulates a pointer to the opaque data used to bind an authenticated transaction to a secure channel.</summary>
1697     </member>
1698     <member name="M:System.Security.Authentication.ExtendedProtection.ChannelBinding.#ctor">
1699       <summary>Initializes a new instance of the <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBinding" /> class.</summary>
1700     </member>
1701     <member name="M:System.Security.Authentication.ExtendedProtection.ChannelBinding.#ctor(System.Boolean)">
1702       <summary>Initializes a new instance of the <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBinding" /> class.</summary>
1703       <param name="ownsHandle">A Boolean value that indicates if the application owns the safe handle to a native memory region containing the byte data that would be passed to native calls that provide extended protection for integrated windows authentication.</param>
1704     </member>
1705     <member name="P:System.Security.Authentication.ExtendedProtection.ChannelBinding.Size">
1706       <summary>The <see cref="P:System.Security.Authentication.ExtendedProtection.ChannelBinding.Size" /> property gets the size, in bytes, of the channel binding token associated with the <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBinding" /> instance.</summary>
1707       <returns>The size, in bytes, of the channel binding token in the <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBinding" /> instance.</returns>
1708     </member>
1709     <member name="T:System.Security.Authentication.ExtendedProtection.ChannelBindingKind">
1710       <summary>The <see cref="T:System.Security.Authentication.ExtendedProtection.ChannelBindingKind" /> enumeration represents the kinds of channel bindings that can be queried from secure channels.</summary>
1711     </member>
1712     <member name="F:System.Security.Authentication.ExtendedProtection.ChannelBindingKind.Endpoint">
1713       <summary>A channel binding unique to a given endpoint (a TLS server certificate, for example).</summary>
1714     </member>
1715     <member name="F:System.Security.Authentication.ExtendedProtection.ChannelBindingKind.Unique">
1716       <summary>A channel binding completely unique to a given channel (a TLS session key, for example).</summary>
1717     </member>
1718     <member name="F:System.Security.Authentication.ExtendedProtection.ChannelBindingKind.Unknown">
1719       <summary>An unknown channel binding type.</summary>
1720     </member>
1721     <member name="T:System.Security.Authentication.HashAlgorithmType">
1722       <summary>Specifies the algorithm used for generating message authentication codes (MACs).</summary>
1723     </member>
1724     <member name="F:System.Security.Authentication.HashAlgorithmType.Md5">
1725       <summary>The Message Digest 5 (MD5) hashing algorithm.</summary>
1726     </member>
1727     <member name="F:System.Security.Authentication.HashAlgorithmType.None">
1728       <summary>No hashing algorithm is used.</summary>
1729     </member>
1730     <member name="F:System.Security.Authentication.HashAlgorithmType.Sha1">
1731       <summary>The Secure Hashing Algorithm (SHA1).</summary>
1732     </member>
1733     <member name="F:System.Security.Authentication.HashAlgorithmType.Sha256">
1734       <summary>The Secure Hashing Algorithm 2 (SHA-2), using a 256-bit digest.</summary>
1735     </member>
1736     <member name="F:System.Security.Authentication.HashAlgorithmType.Sha384">
1737       <summary>The Secure Hashing Algorithm 2 (SHA-2), using a 384-bit digest.</summary>
1738     </member>
1739     <member name="F:System.Security.Authentication.HashAlgorithmType.Sha512">
1740       <summary>The Secure Hashing Algorithm 2 (SHA-2), using a 512-bit digest.</summary>
1741     </member>
1742     <member name="T:System.Security.Authentication.SslProtocols">
1743       <summary>Defines the possible versions of <see cref="T:System.Security.Authentication.SslProtocols" />.</summary>
1744     </member>
1745     <member name="F:System.Security.Authentication.SslProtocols.Default">
1746       <summary>Use None instead of Default. Default permits only the Secure Sockets Layer (SSL) 3.0 or Transport Layer Security (TLS) 1.0 protocols to be negotiated, and those options are now considered obsolete. Consequently, Default is not allowed in many organizations. Despite the name of this field, <see cref="T:System.Net.Security.SslStream" /> does not use it as a default except under special circumstances.</summary>
1747     </member>
1748     <member name="F:System.Security.Authentication.SslProtocols.None">
1749       <summary>Allows the operating system to choose the best protocol to use, and to block protocols that are not secure. Unless your app has a specific reason not to, you should use this field.</summary>
1750     </member>
1751     <member name="F:System.Security.Authentication.SslProtocols.Ssl2">
1752       <summary>Specifies the SSL 2.0 protocol. SSL 2.0 has been superseded by the TLS protocol and is provided for backward compatibility only.</summary>
1753     </member>
1754     <member name="F:System.Security.Authentication.SslProtocols.Ssl3">
1755       <summary>Specifies the SSL 3.0 protocol. SSL 3.0 has been superseded by the TLS protocol and is provided for backward compatibility only.</summary>
1756     </member>
1757     <member name="F:System.Security.Authentication.SslProtocols.Tls">
1758       <summary>Specifies the TLS 1.0 security protocol. The TLS protocol is defined in IETF RFC 2246.</summary>
1759     </member>
1760     <member name="F:System.Security.Authentication.SslProtocols.Tls11">
1761       <summary>Specifies the TLS 1.1 security protocol. The TLS protocol is defined in IETF RFC 4346.</summary>
1762     </member>
1763     <member name="F:System.Security.Authentication.SslProtocols.Tls12">
1764       <summary>Specifies the TLS 1.2 security protocol. The TLS protocol is defined in IETF RFC 5246.</summary>
1765     </member>
1766     <member name="F:System.Security.Authentication.SslProtocols.Tls13">
1767       <summary>Specifies the TLS 1.3 security protocol. The TLS protocol is defined in IETF RFC 8446.</summary>
1768     </member>
1769   </members>
1770 </doc>