2015-04-07 09:35:12 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// <copyright file="StatementCompletedEventHandler.cs" company="Microsoft">
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
// </copyright>
|
2016-02-22 11:00:01 -05:00
|
|
|
// <owner current="true" primary="true">markash</owner>
|
|
|
|
// <owner current="true" primary="false">laled</owner>
|
2015-04-07 09:35:12 +01:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
namespace System.Data {
|
|
|
|
using System;
|
|
|
|
|
|
|
|
public delegate void StatementCompletedEventHandler(object sender, StatementCompletedEventArgs e);
|
|
|
|
}
|
|
|
|
|