| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //
- // System.Data.ObjectSpaces.Query.SpanPropertyCollection
- //
- //
- // Author:
- // Richard Thombs ([email protected])
- //
- #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
|