From 5879cd7c53298f69f11705fb1e14d9ecee9fa2ad Mon Sep 17 00:00:00 2001 From: Scott Schaab Date: Tue, 2 Feb 2021 14:11:21 -0800 Subject: [PATCH 1/2] Update xml documentation for TokenRequestContext.Claims --- sdk/core/Azure.Core/src/TokenRequestContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/Azure.Core/src/TokenRequestContext.cs b/sdk/core/Azure.Core/src/TokenRequestContext.cs index fe4237f61b34d..8599c6b301050 100644 --- a/sdk/core/Azure.Core/src/TokenRequestContext.cs +++ b/sdk/core/Azure.Core/src/TokenRequestContext.cs @@ -44,7 +44,7 @@ public TokenRequestContext(string[] scopes, string? parentRequestId = default, s public string? ParentRequestId { get; } /// - /// Additional claims to be included in the token. + /// Additional claims to be included in the token. See https://openid.net/specs/openid-connect-core-1_0-final.html#ClaimsParameter for more information on format and content. /// public string? Claims { get; } } From 5f8710beb766ba760214e98b62654de12554c85d Mon Sep 17 00:00:00 2001 From: Scott Schaab Date: Wed, 3 Feb 2021 11:28:41 -0800 Subject: [PATCH 2/2] fix cref to href --- sdk/core/Azure.Core/src/TokenRequestContext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/Azure.Core/src/TokenRequestContext.cs b/sdk/core/Azure.Core/src/TokenRequestContext.cs index 8599c6b301050..0346a06a8c783 100644 --- a/sdk/core/Azure.Core/src/TokenRequestContext.cs +++ b/sdk/core/Azure.Core/src/TokenRequestContext.cs @@ -44,7 +44,7 @@ public TokenRequestContext(string[] scopes, string? parentRequestId = default, s public string? ParentRequestId { get; } /// - /// Additional claims to be included in the token. See https://openid.net/specs/openid-connect-core-1_0-final.html#ClaimsParameter for more information on format and content. + /// Additional claims to be included in the token. See https://openid.net/specs/openid-connect-core-1_0-final.html#ClaimsParameter for more information on format and content. /// public string? Claims { get; } }