Fixing doc comments
This commit is contained in:
parent
e11e6b3be7
commit
f3b1f2ca29
|
|
@ -13,7 +13,7 @@ namespace Microsoft.AspNetCore.Mvc
|
||||||
/// token is required for HTTP methods other than GET, HEAD, OPTIONS, and TRACE.
|
/// token is required for HTTP methods other than GET, HEAD, OPTIONS, and TRACE.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// <see cref="AutoValidateAntiforgeryTokenAttribute"/> can be applied at as a global filter to trigger
|
/// <see cref="AutoValidateAntiforgeryTokenAttribute"/> can be applied as a global filter to trigger
|
||||||
/// validation of antiforgery tokens by default for an application. Use
|
/// validation of antiforgery tokens by default for an application. Use
|
||||||
/// <see cref="IgnoreAntiforgeryTokenAttribute"/> to suppress validation of the antiforgery token for
|
/// <see cref="IgnoreAntiforgeryTokenAttribute"/> to suppress validation of the antiforgery token for
|
||||||
/// a controller or action.
|
/// a controller or action.
|
||||||
|
|
@ -27,7 +27,7 @@ namespace Microsoft.AspNetCore.Mvc
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// Filters are executed in an ordering determined by an ascending sort of the <see cref="Order"/> property.
|
/// Filters are executed in a sequence determined by an ascending sort of the <see cref="Order"/> property.
|
||||||
/// </para>
|
/// </para>
|
||||||
/// <para>
|
/// <para>
|
||||||
/// The default Order for this attribute is 1000 because it must run after any filter which does authentication
|
/// The default Order for this attribute is 1000 because it must run after any filter which does authentication
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue