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