SqlRowUpdatedEventArgs
using System.Data.Common;
namespace System.Data.SqlClient
{
[Obsolete("Use the Microsoft.Data.SqlClient package instead.")]
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);
}
}
}