//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// Microsoft
// Microsoft
// Microsoft
//------------------------------------------------------------------------------
namespace System.Data {
using System;
using System.Diagnostics;
public class DataRowChangeEventArgs : EventArgs {
private DataRow row;
private DataRowAction action;
///
///
/// Initializes a new instance of the class.
///
///
public DataRowChangeEventArgs(DataRow row, DataRowAction action) {
this.row = row;
this.action = action;
}
///
///
/// Gets the row upon which an action has occurred.
///
///
public DataRow Row {
get {
return row;
}
}
///
///
/// Gets the action that has occurred on a .
///
///
public DataRowAction Action {
get {
return action;
}
}
}
}