// // System.Data.ObjectSpaces.Query.SpanPropertyCollection // // // Author: // Richard Thombs (stony@stony.org) // #if NET_1_2 using System; using System.Collections; namespace System.Data.ObjectSpaces.Query { [MonoTODO()] public class SpanPropertyCollection : CollectionBase { [MonoTODO()] public SpanPropertyCollection() : base() { throw new NotImplementedException(); } [MonoTODO()] public SpanPropertyCollection Clone() { throw new NotImplementedException(); } [MonoTODO()] public void Add(SpanProperty spanProperty) { throw new NotImplementedException(); } [MonoTODO()] public void AddRoot(SpanProperty spanProperty) { throw new NotImplementedException(); } // FIXME: This isn't right [MonoTODO()] public SpanProperty Item { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } } #endif