Skip to content

Commit

Permalink
SA1629 Documentation text should end with a period
Browse files Browse the repository at this point in the history
  • Loading branch information
raman-m committed Aug 28, 2023
1 parent 0bf23b8 commit a0fa685
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/Ocelot/Configuration/HttpHandlerOptions.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
namespace Ocelot.Configuration
using System.Net.Http;

namespace Ocelot.Configuration
{
/// <summary>
/// Describes configuration parameters for http handler,
Expand Down Expand Up @@ -43,13 +45,19 @@ public HttpHandlerOptions(bool allowAutoRedirect, bool useCookieContainer, bool
/// <summary>
/// Specify the maximum of concurrent connection to a network endpoint.
/// </summary>
/// <value>MaxConnectionsPerServer</value>
/// <value>
/// The maximum number of concurrent connections (per server endpoint) allowed by an <see cref="HttpClient"/> object.
/// The property value is assignable to the <see cref="HttpClientHandler.MaxConnectionsPerServer"/> one.
/// </value>
public int MaxConnectionsPerServer { get; }

/// <summary>
/// Specify is UseDefaultCredentials set on HttpClientHandler.
/// </summary>
/// <value>UseDefaultCredentials</value>
/// <value>
/// <see langword="true"/> if the default credentials are used; otherwise <see langword="false"/>. The default value is <see langword="false"/>.
/// The property value is assignable to the <see cref="HttpClientHandler.UseDefaultCredentials"/> one.
/// </value>
public bool UseDefaultCredentials { get; private set; }
}
}

0 comments on commit a0fa685

Please sign in to comment.