Skip to content

Commit

Permalink
Update ArgumentNullException description for AzurePipelinesCredential…
Browse files Browse the repository at this point in the history
… ctor (#47287)
  • Loading branch information
scottaddie authored Nov 21, 2024
1 parent fb96288 commit cee0a67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ protected AzurePipelinesCredential()
/// <param name="serviceConnectionId">The service connection Id for the service connection associated with the pipeline.</param>
/// <param name="systemAccessToken">The pipeline's <see href="https://learn.microsoft.com/azure/devops/pipelines/build/variables?view=azure-devops%26tabs=yaml#systemaccesstoken">System.AccessToken</see> value.</param>
/// <param name="options">An instance of <see cref="AzurePipelinesCredentialOptions"/>.</param>
/// <exception cref="ArgumentNullException">When <paramref name="systemAccessToken"/> is null.</exception>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="tenantId"/>, <paramref name="clientId"/>, <paramref name="serviceConnectionId"/>, or <paramref name="systemAccessToken"/> is null.</exception>
public AzurePipelinesCredential(string tenantId, string clientId, string serviceConnectionId, string systemAccessToken, AzurePipelinesCredentialOptions options = default)
{
Argument.AssertNotNull(systemAccessToken, nameof(systemAccessToken));
Expand Down

0 comments on commit cee0a67

Please sign in to comment.