From a8ae16e0cb647330bb526294c61fcd1548d3d692 Mon Sep 17 00:00:00 2001 From: Kahbazi Date: Thu, 13 Dec 2018 11:08:12 +0330 Subject: [PATCH] Change JwtBearerOptions.Audience comment (#4646) --- .../JwtBearerOptions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Security/src/Microsoft.AspNetCore.Authentication.JwtBearer/JwtBearerOptions.cs b/src/Security/src/Microsoft.AspNetCore.Authentication.JwtBearer/JwtBearerOptions.cs index 0d0a88e247..976ddc581e 100644 --- a/src/Security/src/Microsoft.AspNetCore.Authentication.JwtBearer/JwtBearerOptions.cs +++ b/src/Security/src/Microsoft.AspNetCore.Authentication.JwtBearer/JwtBearerOptions.cs @@ -33,7 +33,8 @@ namespace Microsoft.AspNetCore.Authentication.JwtBearer public string Authority { get; set; } /// - /// Gets or sets the audience for any received OpenIdConnect token. + /// Gets or sets a single valid audience value for any received OpenIdConnect token. + /// This value is passed into TokenValidationParameters.ValidAudience if that property is empty. /// /// /// The expected audience for any received OpenIdConnect token.