<PackageReference Include="System.Data.SqlClient" Version="4.8.4" />

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); } } }