docs: update code docs for SetRequestTimeout (#2520)

This commit is contained in:
notauserx
2022-08-03 21:17:48 +06:00
committed by GitHub
parent 80b82aa973
commit 4d46d5fb41
7 changed files with 10 additions and 7 deletions
+2 -1
View File
@@ -7,7 +7,8 @@ namespace Octokit.Reactive
IConnection Connection { get; }
/// <summary>
/// Set the GitHub Api request timeout.
/// Sets the timeout for the connection between the client and the server.
/// Github will terminate the request if it takes more than 10 seconds to process the request
/// Useful to set a specific timeout for lengthy operations, such as uploading release assets
/// </summary>
/// <remarks>
+2 -1
View File
@@ -57,7 +57,8 @@ namespace Octokit.Reactive
}
/// <summary>
/// Set the GitHub Api request timeout.
/// Sets the timeout for the connection between the client and the server.
/// Github will terminate the request if it takes more than 10 seconds to process the request
/// Useful to set a specific timeout for lengthy operations, such as uploading release assets
/// </summary>
/// <remarks>
+1 -1
View File
@@ -114,7 +114,7 @@ namespace Octokit
}
/// <summary>
/// Set the GitHub Api request timeout.
/// Sets the timeout for the connection between the client and the server.
/// Useful to set a specific timeout for lengthy operations, such as uploading release assets
/// </summary>
/// <remarks>
+1 -1
View File
@@ -832,7 +832,7 @@ namespace Octokit
}
/// <summary>
/// Set the GitHub Api request timeout.
/// Sets the timeout for the connection between the client and the server.
/// </summary>
/// <param name="timeout">The Timeout value</param>
public void SetRequestTimeout(TimeSpan timeout)
+1 -1
View File
@@ -327,7 +327,7 @@ namespace Octokit
Credentials Credentials { get; set; }
/// <summary>
/// Set the GitHub Api request timeout.
/// Sets the timeout for the connection between the client and the server.
/// </summary>
/// <param name="timeout">The Timeout value</param>
void SetRequestTimeout(TimeSpan timeout);
+1 -1
View File
@@ -22,7 +22,7 @@ namespace Octokit.Internal
/// <summary>
/// Set the GitHub API request timeout.
/// Sets the timeout for the connection between the client and the server.
/// </summary>
/// <param name="timeout">The Timeout value</param>
void SetRequestTimeout(TimeSpan timeout);
+2 -1
View File
@@ -8,7 +8,8 @@ namespace Octokit
public interface IGitHubClient : IApiInfoProvider
{
/// <summary>
/// Set the GitHub API request timeout.
/// Sets the timeout for the connection between the client and the server.
/// Github will terminate the request if it takes more than 10 seconds to process the request
/// Useful to set a specific timeout for lengthy operations, such as uploading release assets
/// </summary>
/// <remarks>