Skip to content

Commit a0fa685

Browse files
committed
SA1629 Documentation text should end with a period
1 parent 0bf23b8 commit a0fa685

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/Ocelot/Configuration/HttpHandlerOptions.cs

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace Ocelot.Configuration
1+
using System.Net.Http;
2+
3+
namespace Ocelot.Configuration
24
{
35
/// <summary>
46
/// Describes configuration parameters for http handler,
@@ -43,13 +45,19 @@ public HttpHandlerOptions(bool allowAutoRedirect, bool useCookieContainer, bool
4345
/// <summary>
4446
/// Specify the maximum of concurrent connection to a network endpoint.
4547
/// </summary>
46-
/// <value>MaxConnectionsPerServer</value>
48+
/// <value>
49+
/// The maximum number of concurrent connections (per server endpoint) allowed by an <see cref="HttpClient"/> object.
50+
/// The property value is assignable to the <see cref="HttpClientHandler.MaxConnectionsPerServer"/> one.
51+
/// </value>
4752
public int MaxConnectionsPerServer { get; }
4853

4954
/// <summary>
5055
/// Specify is UseDefaultCredentials set on HttpClientHandler.
5156
/// </summary>
52-
/// <value>UseDefaultCredentials</value>
57+
/// <value>
58+
/// <see langword="true"/> if the default credentials are used; otherwise <see langword="false"/>. The default value is <see langword="false"/>.
59+
/// The property value is assignable to the <see cref="HttpClientHandler.UseDefaultCredentials"/> one.
60+
/// </value>
5361
public bool UseDefaultCredentials { get; private set; }
5462
}
5563
}

0 commit comments

Comments
 (0)