ISqlNotificationReceiver.cs 521 B

123456789101112131415161718192021222324
  1. //
  2. // System.Data.Sql.ISqlNotificationReceiver
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. namespace System.Data.Sql {
  11. public interface ISqlNotificationReceiver
  12. {
  13. #region Methods
  14. void Invalidate (string id, SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source);
  15. void InvalidateImmediate (string id, SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source);
  16. #endregion // Methods
  17. }
  18. }
  19. #endif