// // System.Web.Services.Protocols.DiscoveryClientResultCollection.cs // // Author: // Dave Bettin (javabettin@yahoo.com) // // Copyright (C) Dave Bettin, 2002 // using System.Collections; namespace System.Web.Services.Discovery { public sealed class DiscoveryClientResultCollection : CollectionBase { #region Constructors [MonoTODO] public DiscoveryClientResultCollection () { throw new NotImplementedException (); } #endregion // Constructors #region Properties public DiscoveryClientResult this[int i] { [MonoTODO] get { throw new NotImplementedException (); } [MonoTODO] set { throw new NotImplementedException (); } } #endregion // Properties #region Methods [MonoTODO] public int Add (DiscoveryClientResult value) { throw new NotImplementedException (); } [MonoTODO] public bool Contains (DiscoveryClientResult value) { throw new NotImplementedException (); } [MonoTODO] public void Remove (DiscoveryClientResult value) { throw new NotImplementedException (); } #endregion // Methods } }