Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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