Skip to content

Commit f282354

Browse files
authored
Link to mocking guidance in XML docs for credential types (Azure#43960)
1 parent 8903196 commit f282354

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

sdk/identity/Azure.Identity/src/Credentials/AuthorizationCodeCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class AuthorizationCodeCredential : TokenCredential
2929
internal TenantIdResolverBase TenantIdResolver { get; }
3030

3131
/// <summary>
32-
/// Protected constructor for mocking.
32+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
3333
/// </summary>
3434
protected AuthorizationCodeCredential()
3535
{

sdk/identity/Azure.Identity/src/Credentials/AzurePipelinesCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class AzurePipelinesCredential : TokenCredential
2525
private const string OIDC_API_VERSION = "7.1";
2626

2727
/// <summary>
28-
/// Protected constructor for mocking.
28+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
2929
/// </summary>
3030
protected AzurePipelinesCredential()
3131
{ }

sdk/identity/Azure.Identity/src/Credentials/ClientAssertionCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ClientAssertionCredential : TokenCredential
2525
internal TenantIdResolverBase TenantIdResolver { get; }
2626

2727
/// <summary>
28-
/// Protected constructor for mocking.
28+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
2929
/// </summary>
3030
protected ClientAssertionCredential()
3131
{ }

sdk/identity/Azure.Identity/src/Credentials/ClientCertificateCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class ClientCertificateCredential : TokenCredential
4141
internal TenantIdResolverBase TenantIdResolver { get; }
4242

4343
/// <summary>
44-
/// Protected constructor for mocking.
44+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
4545
/// </summary>
4646
protected ClientCertificateCredential()
4747
{ }

sdk/identity/Azure.Identity/src/Credentials/ClientSecretCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public class ClientSecretCredential : TokenCredential
4040
internal TenantIdResolverBase TenantIdResolver { get; }
4141

4242
/// <summary>
43-
/// Protected constructor for mocking.
43+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
4444
/// </summary>
4545
protected ClientSecretCredential()
4646
{

sdk/identity/Azure.Identity/src/Credentials/ManagedIdentityCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public class ManagedIdentityCredential : TokenCredential
2727
"See the troubleshooting guide for more information. https://aka.ms/azsdk/net/identity/managedidentitycredential/troubleshoot";
2828

2929
/// <summary>
30-
/// Protected constructor for mocking.
30+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
3131
/// </summary>
3232
protected ManagedIdentityCredential()
3333
{ }

sdk/identity/Azure.Identity/src/Credentials/OnBehalfOfCredential.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class OnBehalfOfCredential : TokenCredential
2626
internal TenantIdResolverBase TenantIdResolver { get; }
2727

2828
/// <summary>
29-
/// Protected constructor for mocking.
29+
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
3030
/// </summary>
3131
protected OnBehalfOfCredential()
3232
{ }

0 commit comments

Comments
 (0)