Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/DataSourceSelectArguments.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI/DataSourceSelectArguments.cs16
1 files changed, 12 insertions, 4 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/DataSourceSelectArguments.cs b/mcs/class/System.Web/System.Web.UI/DataSourceSelectArguments.cs
index 2e695298b27..d00dae48ed6 100644
--- a/mcs/class/System.Web/System.Web.UI/DataSourceSelectArguments.cs
+++ b/mcs/class/System.Web/System.Web.UI/DataSourceSelectArguments.cs
@@ -100,7 +100,9 @@ namespace System.Web.UI
public int MaximumRows {
get { return this.maxRows; }
- set { this.maxRows = value; }
+ set {
+ this.maxRows = value;
+ }
}
public bool RetrieveTotalRowCount {
@@ -110,17 +112,23 @@ namespace System.Web.UI
public string SortExpression {
get { return this.sortExpression; }
- set { this.sortExpression = value; }
+ set {
+ this.sortExpression = value;
+ }
}
public int StartRowIndex {
get { return this.startingRowIndex; }
- set { this.startingRowIndex = value; }
+ set {
+ this.startingRowIndex = value;
+ }
}
public int TotalRowCount {
get { return this.totalRowCount; }
- set { this.totalRowCount = value; }
+ set {
+ this.totalRowCount = value;
+ }
}
}
}