DekGenius.com
[ Team LiB ] Previous Section Next Section

MimePartCollection

System.Web.Services.Description (system.web.services.dll)sealed class

This class provides a collection of MimePart objects used by the MimeMultipartRelatedBinding class. Individual MimePart objects can be retrieved only by index number.

public sealed class MimePartCollection : CollectionBase {
// Public Constructors
   public MimePartCollection( );
// Public Instance Properties
   public MimePart this[int index]{set; get; }
// Public Instance Methods
   public int Add(MimePart mimePart);
   public bool Contains(MimePart mimePart);
   public void CopyTo(MimePart[ ] array, int index);
   public int IndexOf(MimePart mimePart);
   public void Insert(int index, MimePart mimePart);
   public void Remove(MimePart mimePart);
}

Hierarchy

System.Object System.Collections.CollectionBase(System.Collections.IList, System.Collections.ICollection, System.Collections.IEnumerable) MimePartCollection

Returned By

MimeMultipartRelatedBinding.Parts

    [ Team LiB ] Previous Section Next Section