Skip to content

Commit

Permalink
Missing docstring params
Browse files Browse the repository at this point in the history
  • Loading branch information
Huib Piguillet committed Nov 19, 2020
1 parent adc6bad commit d7da24f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Bynder/Sdk/Api/RequestSender/ApiRequestSender.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ internal class ApiRequestSender : IApiRequestSender
/// </summary>
/// <param name="configuration">Configuration.</param>
/// <param name="credentials">Credentials to use in authorized requests and to refresh tokens</param>
/// <param name="oauthService">OAuthService.</param>
/// <param name="httpSender">HTTP instance to send API requests</param>
internal ApiRequestSender(Configuration configuration, ICredentials credentials, IOAuthService oauthService, IHttpRequestSender httpSender)
{
Expand All @@ -47,6 +48,7 @@ internal ApiRequestSender(Configuration configuration, ICredentials credentials,
/// <returns>The instance.</returns>
/// <param name="configuration">Configuration.</param>
/// <param name="credentials">Credentials.</param>
/// <param name="oauthService">OAuthService.</param>
public static IApiRequestSender Create(Configuration configuration, ICredentials credentials, IOAuthService oauthService)
{
return new ApiRequestSender(configuration, credentials, oauthService, new HttpRequestSender());
Expand Down

0 comments on commit d7da24f

Please sign in to comment.