Updates referencesource to .NET 4.7
[mono-project.git] / mcs / class / referencesource / System.Data / System / Data / SqlClient / RowsCopiedEventArgs.cs
blobcc294b15712f7cbcb9d9a9b95800364eced174f4
1 //------------------------------------------------------------------------------
2 // <copyright file="RowsCopiedEvent.cs" company="Microsoft">
3 // Copyright (c) Microsoft Corporation. All rights reserved.
4 // </copyright>
5 // <owner current="true" primary="true">Microsoft</owner>
6 // <owner current="true" primary="false">Microsoft</owner>
7 //------------------------------------------------------------------------------
9 namespace System.Data.SqlClient {
11 public class SqlRowsCopiedEventArgs : System.EventArgs {
12 private bool _abort;
13 private long _rowsCopied;
15 public SqlRowsCopiedEventArgs (long rowsCopied) {
16 _rowsCopied = rowsCopied;
19 public bool Abort {
20 get {
21 return _abort;
23 set {
24 _abort = value;
29 public long RowsCopied {
30 get {
31 return _rowsCopied;