Imported Upstream version 5.2.0.175

Former-commit-id: bb0468d0f257ff100aa895eb5fe583fb5dfbf900
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2017-06-07 13:16:24 +00:00
parent 4bdbaf4a88
commit 966bba02bb
8776 changed files with 346420 additions and 149650 deletions

View File

@ -45,8 +45,8 @@ namespace System.Web.UI.WebControls
typeof (RectangleHotSpot)
};
public HotSpot this [int idx] {
get { return (HotSpot) ((IList)this)[idx]; }
public HotSpot this [int index] {
get { return (HotSpot) ((IList)this)[index]; }
}
public int Add (HotSpot spot)
@ -54,9 +54,9 @@ namespace System.Web.UI.WebControls
return ((IList)this).Add (spot);
}
protected override object CreateKnownType (int idx)
protected override object CreateKnownType (int index)
{
switch (idx) {
switch (index) {
case 0:
return new CircleHotSpot ();
case 1:
@ -73,9 +73,9 @@ namespace System.Web.UI.WebControls
return _knownTypes;
}
public void Insert (int idx, HotSpot spot)
public void Insert (int index, HotSpot spot)
{
((IList)this).Insert (idx, spot);
((IList)this).Insert (index, spot);
}
protected override void OnValidate (object o)
@ -91,9 +91,9 @@ namespace System.Web.UI.WebControls
((IList)this).Remove (spot);
}
public void RemoveAt (int idx)
public void RemoveAt (int index)
{
((IList)this).RemoveAt (idx);
((IList)this).RemoveAt (index);
}
protected override void SetDirtyObject (object o)