//------------------------------------------------------------------------------
// <copyright file="StatementCompletedEventArgs.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
// <owner current="true" primary="true">Microsoft</owner>
// <owner current="true" primary="false">Microsoft</owner>
//------------------------------------------------------------------------------
namespace System.Data {
using System;
public sealed class StatementCompletedEventArgs : System.EventArgs {
private readonly int _recordCount;
public StatementCompletedEventArgs(int recordCount) {
_recordCount = recordCount;
}
public int RecordCount {
get {
return _recordCount;
}
}
}
}
|