You've already forked linux-packaging-mono
Imported Upstream version 5.2.0.175
Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
parent
4bdbaf4a88
commit
966bba02bb
@ -57,22 +57,22 @@ namespace System.Web.UI
|
||||
this.sortExpression = sortExpression;
|
||||
}
|
||||
|
||||
public DataSourceSelectArguments (int startingRowIndex, int maxRows)
|
||||
public DataSourceSelectArguments (int startRowIndex, int maximumRows)
|
||||
{
|
||||
this.startingRowIndex = startingRowIndex;
|
||||
this.maxRows = maxRows;
|
||||
this.startingRowIndex = startRowIndex;
|
||||
this.maxRows = maximumRows;
|
||||
}
|
||||
|
||||
public DataSourceSelectArguments (string sortExpression, int startingRowIndex, int maxRows)
|
||||
public DataSourceSelectArguments (string sortExpression, int startRowIndex, int maximumRows)
|
||||
{
|
||||
this.sortExpression = sortExpression;
|
||||
this.startingRowIndex = startingRowIndex;
|
||||
this.maxRows = maxRows;
|
||||
this.startingRowIndex = startRowIndex;
|
||||
this.maxRows = maximumRows;
|
||||
}
|
||||
|
||||
public void AddSupportedCapabilities (DataSourceCapabilities srcCapabilities)
|
||||
public void AddSupportedCapabilities (DataSourceCapabilities capabilities)
|
||||
{
|
||||
this.dsc = this.dsc | srcCapabilities;
|
||||
this.dsc = this.dsc | capabilities;
|
||||
}
|
||||
|
||||
// MSDN: The DataSourceSelectArguments class overrides the Object.Equals method to test
|
||||
|
Reference in New Issue
Block a user