OnChangedEventHandler.cs 659 B

1234567891011121314151617
  1. //------------------------------------------------------------------------------
  2. // <copyright file="OnChangedEventHandler.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data.SqlClient {
  9. using System;
  10. using System.ComponentModel;
  11. using System.Collections;
  12. using System.Data;
  13. public delegate void OnChangeEventHandler(object sender, SqlNotificationEventArgs e);
  14. }