From e3d0298d92883afd722d400de65f1cfe7134ea11 Mon Sep 17 00:00:00 2001 From: Scott Schaab Date: Thu, 4 Feb 2021 09:45:25 -0800 Subject: [PATCH] Update xml documentation for TokenRequestContext.Claims (#18367) * Update xml documentation for TokenRequestContext.Claims * 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 fe4237f61b34..0346a06a8c78 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; } }