| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- //
- // System.Web.Services.Description.MimePartCollection.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- using System.Collections;
- namespace System.Web.Services.Description {
- public sealed class MimePartCollection : CollectionBase {
- #region Properties
- public MimePart this [int index] {
- get {
- if (index < 0 || index > Count)
- throw new ArgumentOutOfRangeException ();
- return (MimePart) List[index];
- }
- set { List[index] = value; }
- }
- #endregion // Properties
- #region Methods
- public int Add (MimePart mimePart)
- {
- Insert (Count, mimePart);
- return (Count - 1);
- }
- public bool Contains (MimePart mimePart)
- {
- return List.Contains (mimePart);
- }
- public void CopyTo (MimePart[] array, int index)
- {
- List.CopyTo (array, index);
- }
- public int IndexOf (MimePart mimePart)
- {
- return List.IndexOf (mimePart);
- }
- public void Insert (int index, MimePart mimePart)
- {
- List.Insert (index, mimePart);
- }
-
- public void Remove (MimePart mimePart)
- {
- List.Remove (mimePart);
- }
-
- #endregion // Methods
- }
- }
|