| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // System.Web.Services.Description.OperationCollection.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Description {
- public sealed class OperationCollection : ServiceDescriptionBaseCollection {
- #region Constructors
- internal OperationCollection (PortType portType)
- : base (portType)
- {
- }
- #endregion // Constructors
- #region Properties
- public Operation this [int index] {
- get {
- if (index < 0 || index > Count)
- throw new ArgumentOutOfRangeException ();
- return (Operation) List[index];
- }
- set { List[index] = value; }
- }
- #endregion // Properties
- #region Methods
- public int Add (Operation operation)
- {
- Insert (Count, operation);
- return (Count - 1);
- }
- public bool Contains (Operation operation)
- {
- return List.Contains (operation);
- }
- public void CopyTo (Operation[] array, int index)
- {
- List.CopyTo (array, index);
- }
- public int IndexOf (Operation operation)
- {
- return List.IndexOf (operation);
- }
- public void Insert (int index, Operation operation)
- {
- List.Insert (index, operation);
- }
-
- public void Remove (Operation operation)
- {
- List.Remove (operation);
- }
- protected override void SetParent (object value, object parent)
- {
- ((Operation) value).SetParent ((PortType) parent);
- }
-
- #endregion // Methods
- }
- }
|