File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
nanoFramework.System.Net.Http/Http Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,14 @@ namespace System.Net.Http
1515 /// <summary>
1616 /// Initializes a new instance of the HttpClient class.
1717 /// </summary>
18+ /// <remarks>
19+ /// The HttpClient class instance acts as a session to send HTTP requests.
20+ /// An HttpClient instance is a collection of settings applied to all requests executed by that instance.
21+ /// In addition, every HttpClient instance uses its own connection pool,
22+ /// isolating its requests from requests executed by other HttpClient instances.
23+ ///
24+ /// HttpClient is intended to be instantiated once and reused throughout the life of an application.
25+ /// </remarks>
1826 public partial class HttpClient : HttpMessageInvoker
1927 {
2028 private const HttpCompletionOption DefaultCompletionOption = HttpCompletionOption . ResponseContentRead ;
You can’t perform that action at this time.
0 commit comments