You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: examples/Demo/Shared/Microsoft.FluentUI.AspNetCore.Components.xml
+8-2Lines changed: 8 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2012,13 +2012,15 @@
2012
2012
</summary>
2013
2013
<param name="title">The title of the column to sort by.</param>
2014
2014
<param name="direction">The direction of sorting. The default is <see cref="F:Microsoft.FluentUI.AspNetCore.Components.SortDirection.Auto"/>. If the value is <see cref="F:Microsoft.FluentUI.AspNetCore.Components.SortDirection.Auto"/>, then it will toggle the direction on each call.</param>
2015
+
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completion of the operation.</returns>
Sorts the grid by the specified column <paramref name="index"/>. If the index is out of range, nothing happens.
2019
2020
</summary>
2020
2021
<param name="index">The index of the column to sort by.</param>
2021
2022
<param name="direction">The direction of sorting. The default is <see cref="F:Microsoft.FluentUI.AspNetCore.Components.SortDirection.Auto"/>. If the value is <see cref="F:Microsoft.FluentUI.AspNetCore.Components.SortDirection.Auto"/>, then it will toggle the direction on each call.</param>
2023
+
<returns>A <see cref="T:System.Threading.Tasks.Task"/> representing the completion of the operation.</returns>
<returns>True if this <see cref="T:Microsoft.FluentUI.AspNetCore.Components.DataGrid.Infrastructure.IAsyncQueryExecutor"/> instance can perform asynchronous queries for the supplied <paramref name="queryable"/>, otherwise false.</returns>
@@ -471,6 +475,7 @@ public Task SortByColumnAsync(ColumnBase<TGridItem> column, SortDirection direct
471
475
/// </summary>
472
476
/// <param name="title">The title of the column to sort by.</param>
473
477
/// <param name="direction">The direction of sorting. The default is <see cref="SortDirection.Auto"/>. If the value is <see cref="SortDirection.Auto"/>, then it will toggle the direction on each call.</param>
478
+
/// <returns>A <see cref="Task"/> representing the completion of the operation.</returns>
@@ -483,6 +488,7 @@ public Task SortByColumnAsync(string title, SortDirection direction = SortDirect
483
488
/// </summary>
484
489
/// <param name="index">The index of the column to sort by.</param>
485
490
/// <param name="direction">The direction of sorting. The default is <see cref="SortDirection.Auto"/>. If the value is <see cref="SortDirection.Auto"/>, then it will toggle the direction on each call.</param>
491
+
/// <returns>A <see cref="Task"/> representing the completion of the operation.</returns>
0 commit comments