DataRowCreatedEventHandler.cs 838 B

12345678910111213141516171819
  1. //------------------------------------------------------------------------------
  2. // <copyright file="DataRowCreatedEventHandler.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. // <owner current="false" primary="false">[....]</owner>
  8. //------------------------------------------------------------------------------
  9. namespace System.Data {
  10. using System;
  11. /// <devdoc>
  12. /// <para>[To be supplied.]</para>
  13. /// </devdoc>
  14. internal delegate void DataRowCreatedEventHandler(object sender, DataRow r);
  15. internal delegate void DataSetClearEventhandler(object sender, DataTable table);
  16. }