From 2916bb2d55ed4a15fdb1471a44b92d40fdae5dcb Mon Sep 17 00:00:00 2001 From: stukselbax Date: Fri, 1 Jul 2016 20:38:17 +0300 Subject: [PATCH] Typo fixed (#1593) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add an optional extended description… --- aspnet/security/authorization/limitingidentitybyscheme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnet/security/authorization/limitingidentitybyscheme.rst b/aspnet/security/authorization/limitingidentitybyscheme.rst index 09245d7609..bcdde94c06 100644 --- a/aspnet/security/authorization/limitingidentitybyscheme.rst +++ b/aspnet/security/authorization/limitingidentitybyscheme.rst @@ -31,7 +31,7 @@ In this configuration two authentication middlewares have been added, one for co Selecting the scheme with the Authorize attribute ------------------------------------------------- -As no authentication middleware is configured to automatically run and create an identity you must, at the point of authorization choose which middleware will be used. The simplest way to select the middleware you wish to authorize wish is to use the :dn:prop:`~Microsoft.AspNetCore.Authorization.AuthorizeAttribute.ActiveAuthenticationSchemes` property. This property accepts a comma delimited list of Authentication Schemes to use. For example; +As no authentication middleware is configured to automatically run and create an identity you must, at the point of authorization choose which middleware will be used. The simplest way to select the middleware you wish to authorize with is to use the :dn:prop:`~Microsoft.AspNetCore.Authorization.AuthorizeAttribute.ActiveAuthenticationSchemes` property. This property accepts a comma delimited list of Authentication Schemes to use. For example; .. code-block:: c#