| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- //
- // System.Web.Services.Description.BindingCollection.cs
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2002
- //
- namespace System.Web.Services.Description {
- public sealed class BindingCollection : ServiceDescriptionBaseCollection {
-
- #region Fields
- ServiceDescription serviceDescription;
- #endregion // Fields
- #region Constructors
-
- internal BindingCollection (ServiceDescription serviceDescription)
- : base (serviceDescription)
- {
- }
- #endregion // Constructors
- #region Properties
- public Binding this [int index] {
- get {
- if (index < 0 || index > Count)
- throw new ArgumentOutOfRangeException ();
- return (Binding) List[index];
- }
- set { List [index] = value; }
- }
- public Binding this [string name] {
- get { return this[IndexOf ((Binding) Table[name])]; }
- }
- #endregion // Properties
- #region Methods
- public int Add (Binding binding)
- {
- Insert (Count, binding);
- return (Count - 1);
- }
- public bool Contains (Binding binding)
- {
- return List.Contains (binding);
- }
- public void CopyTo (Binding[] array, int index)
- {
- List.CopyTo (array, index);
- }
- protected override string GetKey (object value)
- {
- if (!(value is Binding))
- throw new InvalidCastException ();
- return ((Binding) value).Name;
- }
- public int IndexOf (Binding binding)
- {
- return List.IndexOf (binding);
- }
- public void Insert (int index, Binding binding)
- {
- List.Insert (index, binding);
- }
-
- public void Remove (Binding binding)
- {
- List.Remove (binding);
- }
-
- protected override void SetParent (object value, object parent)
- {
- ((Binding) value).SetParent ((ServiceDescription) parent);
- }
-
- #endregion // Methods
- }
- }
|