1 write to Arguments
System.Web.Extensions (1)
UI\WebControls\QueryContext.cs (1)
26
Arguments
= arguments;
10 references to Arguments
System.Web.Extensions (10)
UI\WebControls\LinqDataSourceView.cs (1)
574
context.
Arguments
,
UI\WebControls\QueryableDataSourceView.cs (9)
448
string sortExpression = context.
Arguments
.SortExpression;
458
if (CanRetrieveTotalRowCount && context.
Arguments
.RetrieveTotalRowCount) {
459
context.
Arguments
.TotalRowCount = _queryable.Count(source);
462
if ((context.
Arguments
.MaximumRows > 0) && (context.
Arguments
.StartRowIndex >= 0)) {
463
source = _queryable.Skip(source, context.
Arguments
.StartRowIndex);
464
source = _queryable.Take(source, context.
Arguments
.MaximumRows);
467
else if (context.
Arguments
.RetrieveTotalRowCount && (context.
Arguments
.TotalRowCount == -1)) {