| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- //
- // System.Data.ProviderBase.DbReferenceCollection
- //
- // Author:
- // Tim Coleman ([email protected])
- //
- // Copyright (C) Tim Coleman, 2003
- //
- #if NET_1_2
- using System.Collections;
- using System.Data.Common;
- namespace System.Data.ProviderBase {
- public abstract class DbReferenceCollection : IEnumerable
- {
- #region Constructors
-
- [MonoTODO]
- protected DbReferenceCollection ()
- {
- }
- #endregion // Constructors
- #region Methods
- [MonoTODO]
- public void Add (object value)
- {
- throw new NotImplementedException ();
- }
- public abstract void Add (object value, int tag);
- [MonoTODO]
- protected void AddItem (object value, int tag)
- {
- Add (value, tag);
- }
- [MonoTODO]
- IEnumerator IEnumerable.GetEnumerator ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public void Notify (int message, int tag, object connectionInternal)
- {
- throw new NotImplementedException ();
- }
- protected abstract bool NotifyItem (int message, object value, int tag, object connectionInternal);
- [MonoTODO]
- public void Purge ()
- {
- throw new NotImplementedException ();
- }
- public abstract void Remove (object value);
- [MonoTODO]
- protected void RemoveItem (object value)
- {
- Remove (value);
- }
- #endregion // Methods
- }
- }
- #endif
|