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/ExpressionBindingCollection.cs')
-rw-r--r--mcs/class/System.Web/System.Web.UI/ExpressionBindingCollection.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/ExpressionBindingCollection.cs b/mcs/class/System.Web/System.Web.UI/ExpressionBindingCollection.cs
index c343ac9ae18..79cb1ef0ffa 100644
--- a/mcs/class/System.Web/System.Web.UI/ExpressionBindingCollection.cs
+++ b/mcs/class/System.Web/System.Web.UI/ExpressionBindingCollection.cs
@@ -61,8 +61,8 @@ namespace System.Web.UI {
get { return list [propertyName] as ExpressionBinding; }
}
- public ICollection RemovedBindings {
- get { return removed; }
+ public string [] RemovedBindings {
+ get { return (string []) removed.ToArray (typeof (string)); }
}
public object SyncRoot {
@@ -133,7 +133,7 @@ namespace System.Web.UI {
public event EventHandler Changed;
- void OnChanged (EventArgs e)
+ protected void OnChanged (EventArgs e)
{
if (Changed != null)
Changed (this, e);