Typo fixed (#1593)

Add an optional extended description…
pull/1597/head
stukselbax 2016-07-01 20:38:17 +03:00 committed by Rick Anderson
parent bf87d35ecd
commit 2916bb2d55
1 changed files with 1 additions and 1 deletions

View File

@ -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#