Microsoft.Data.ProviderBase.DbReferenceCollection
namespace Microsoft.Data.ProviderBase
{
internal abstract class DbReferenceCollection
{
protected DbReferenceCollection();
public abstract void Add(object value, int refInfo);
protected void AddItem(object value, int refInfo);
public void Notify(int message);
protected abstract void NotifyItem(int message, int refInfo, object value);
public abstract void Remove(object value);
protected void RemoveItem(object value);
}
}