SqlRowUpdatedEventArgs
Provides data for the RowUpdated event.
using System.Data.Common;
namespace System.Data.SqlClient
{
public sealed class SqlRowUpdatedEventArgs : RowUpdatedEventArgs
{
public new SqlCommand Command {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient);
}
}
public SqlRowUpdatedEventArgs(DataRow row, IDbCommand command, StatementType statementType, DataTableMapping tableMapping)
: base(null, null, StatementType.Select, null)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_DataSqlClient);
}
}
}