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

@@ -40,9 +40,9 @@ namespace System.Web
{
}
public ParserErrorCollection (ParserError[] errors)
public ParserErrorCollection (ParserError[] value)
{
InnerList.AddRange (errors);
InnerList.AddRange (value);
}
public ParserError this [int index]
@@ -51,44 +51,44 @@ namespace System.Web
set { InnerList[index] = value; }
}
public int Add (ParserError error)
public int Add (ParserError value)
{
return List.Add (error);
return List.Add (value);
}
public void AddRange (ParserErrorCollection collection)
public void AddRange (ParserErrorCollection value)
{
InnerList.AddRange (collection);
InnerList.AddRange (value);
}
public void AddRange (ParserError[] errors)
public void AddRange (ParserError[] value)
{
InnerList.AddRange (errors);
InnerList.AddRange (value);
}
public bool Contains (ParserError error)
public bool Contains (ParserError value)
{
return InnerList.Contains (error);
return InnerList.Contains (value);
}
public void CopyTo (ParserError[] errors, int index)
public void CopyTo (ParserError[] array, int index)
{
List.CopyTo (errors, index);
List.CopyTo (array, index);
}
public int IndexOf (ParserError error)
public int IndexOf (ParserError value)
{
return InnerList.IndexOf (error);
return InnerList.IndexOf (value);
}
public void Insert (int index, ParserError error)
public void Insert (int index, ParserError value)
{
InnerList.Insert (index, error);
InnerList.Insert (index, value);
}
public void Remove (ParserError error)
public void Remove (ParserError value)
{
InnerList.Remove (error);
InnerList.Remove (value);
}
}
}