diff --git a/Octokit/Http/IConnection.cs b/Octokit/Http/IConnection.cs index 4b0df095..b33c59f7 100644 --- a/Octokit/Http/IConnection.cs +++ b/Octokit/Http/IConnection.cs @@ -29,6 +29,7 @@ namespace Octokit /// Querystring parameters for the request /// Specifies accepted response media types. /// representing the received HTTP response + [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] Task> Get(Uri uri, IDictionary parameters, string accepts); /// @@ -41,6 +42,7 @@ namespace Octokit /// Specifies accepted response media types. /// A token used to cancel the Get request /// representing the received HTTP response + [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1716:IdentifiersShouldNotMatchKeywords", MessageId = "Get")] Task> Get(Uri uri, IDictionary parameters, string accepts, CancellationToken cancellationToken); ///