add realm from HttpListener
[mono.git] / mcs / class / System / System.Net.Mail / AttachmentCollection.cs
index eb9ae46facf443d79c835463267b51f6bd2e7656..24e11430adae18b103f673a92b40e8ed596c525e 100644 (file)
@@ -41,12 +41,31 @@ namespace System.Net.Mail {
                {
                }
                
-               [MonoTODO]
                public void Dispose ()
                {
                        for (int i = 0; i < Count; i += 1)
                                this [i].Dispose ();
                }
+
+               protected override void ClearItems ()
+               {
+                       base.ClearItems ();
+               }
+
+               protected override void InsertItem (int index, Attachment item)
+               {
+                       base.InsertItem (index, item);
+               }
+
+               protected override void RemoveItem (int index)
+               {
+                       base.RemoveItem (index);
+               }
+
+               protected override void SetItem (int index, Attachment item)
+               {
+                       base.SetItem (index, item);
+               }
        }
 }