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