14 lines
551 B
C#
14 lines
551 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <copyright file="FillErrorEventHandler.cs" company="Microsoft">
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
// <owner current="true" primary="true">markash</owner>
|
||
|
// <owner current="true" primary="false">laled</owner>
|
||
|
//------------------------------------------------------------------------------
|
||
|
|
||
|
namespace System.Data { // MDAC 59437
|
||
|
|
||
|
public delegate void FillErrorEventHandler(object sender, FillErrorEventArgs e);
|
||
|
|
||
|
}
|