System.Web.Services.Description (system.web.services.dll) | sealed class |
This class provides a collection of MimeTextMatch
objects used by the MimeTextBinding class.
Individual MimePart objects can be retrieved only
by index number.
public sealed class MimeTextMatchCollection : CollectionBase {
// Public Constructors
public MimeTextMatchCollection( );
// Public Instance Properties
public MimeTextMatch this[int index]{set; get; }
// Public Instance Methods
public int Add(MimeTextMatch match);
public bool Contains(MimeTextMatch match);
public void CopyTo(MimeTextMatch[ ] array, int index);
public int IndexOf(MimeTextMatch match);
public void Insert(int index, MimeTextMatch match);
public void Remove(MimeTextMatch match);
}
Hierarchy
System.Object
System.Collections.CollectionBase(System.Collections.IList,
System.Collections.ICollection,
System.Collections.IEnumerable)
MimeTextMatchCollection
Returned By
MimeTextBinding.Matches,
MimeTextMatch.Matches
|