merge -r 60814:60815
[mono.git] / mcs / class / System.Web / System.Web / SiteMapNodeCollection.cs
index 2c5bd5e1478e33a4bb0f306ea56b37e122dec5e6..13b1536666b10338d0d6d130046853dc72f51de0 100644 (file)
@@ -137,17 +137,17 @@ namespace System.Web
                        List.AddRange (value);
                }
 
-               public bool Contains (SiteMapNode value)
+               public virtual bool Contains (SiteMapNode value)
                {
                        return this.List.Contains (value);
                }
                
-               public void CopyTo (System.Web.SiteMapNode[] array, int index)
+               public virtual void CopyTo (System.Web.SiteMapNode[] array, int index)
                {
                        this.List.CopyTo (array, index);
                }
                
-               public int IndexOf (SiteMapNode value)
+               public virtual int IndexOf (SiteMapNode value)
                {
                        return this.List.IndexOf (value);
                }