2015-04-07 09:35:12 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="DataColumnChangeEventHandler.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2016-02-22 11:00:01 -05:00
|
|
|
// <owner current="true" primary="true">amirhmy</owner>
|
|
|
|
// <owner current="true" primary="false">markash</owner>
|
|
|
|
// <owner current="false" primary="false">jasonzhu</owner>
|
2015-04-07 09:35:12 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.Data {
|
|
|
|
using System;
|
|
|
|
|
|
|
|
// Represents the method that will handle the the <see cref='System.Data.DataTable.ColumnChanging'/> event.</para>
|
|
|
|
public delegate void DataColumnChangeEventHandler(object sender, DataColumnChangeEventArgs e);
|
|
|
|
}
|