DataColumnChangeEventHandler.cs 798 B

123456789101112131415
  1. //------------------------------------------------------------------------------
  2. // <copyright file="DataColumnChangeEventHandler.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. // Represents the method that will handle the the <see cref='System.Data.DataTable.ColumnChanging'/> event.</para>
  12. public delegate void DataColumnChangeEventHandler(object sender, DataColumnChangeEventArgs e);
  13. }