| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- //
- // System.Data.ProviderBase.DbParameterCollectionBase
- //
- // 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 DbParameterCollectionBase : DbParameterCollection
- {
- #region Constructors
-
- [MonoTODO]
- protected DbParameterCollectionBase ()
- {
- }
- #endregion // Constructors
- #region Properties
- [MonoTODO]
- public override int Count {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsFixedSize {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsReadOnly {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override bool IsSynchronized {
- get { throw new NotImplementedException (); }
- }
- protected abstract Type ItemType { get; }
- [MonoTODO]
- protected virtual string ParameterNamePrefix {
- get { throw new NotImplementedException (); }
- }
- [MonoTODO]
- public override object SyncRoot {
- get { throw new NotImplementedException (); }
- }
- #endregion // Properties
- #region Methods
- [MonoTODO]
- public override int Add (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void AddRange (Array values)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override int CheckName (string parameterName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Clear ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool Contains (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override bool Contains (string value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void CopyTo (Array array, int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override IEnumerator GetEnumerator ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override DbParameter GetParameter (int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override int IndexOf (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override int IndexOf (string parameterName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected internal static int IndexOf (IEnumerable itmes, string parameterName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Insert (int index, object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void OnChange ()
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void Remove (object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void RemoveAt (int index)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- public override void RemoveAt (string parameterName)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected override void SetParameter (int index, DbParameter value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void Validate (int index, object value)
- {
- throw new NotImplementedException ();
- }
- [MonoTODO]
- protected virtual void ValidateType (object value)
- {
- throw new NotImplementedException ();
- }
- #endregion // Methods
- }
- }
- #endif
|