1 instantiation of SqlRowUpdatingEventArgs
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (1)
187
return new
SqlRowUpdatingEventArgs
(dataRow, command, statementType, tableMapping);
4 references to SqlRowUpdatingEventArgs
System.Data (4)
fx\src\data\System\Data\SqlClient\SqlCommandBuilder.cs (1)
135
private void SqlRowUpdatingHandler(object sender,
SqlRowUpdatingEventArgs
ruevent) {
fx\src\data\System\Data\SqlClient\SqlDataAdapter.cs (2)
238
if ((null != handler) && (value is
SqlRowUpdatingEventArgs
)) {
239
handler(this, (
SqlRowUpdatingEventArgs
) value);
fx\src\data\System\Data\SqlClient\SqlRowUpdatingEventHandler.cs (1)
11
public delegate void SqlRowUpdatingEventHandler(object sender,
SqlRowUpdatingEventArgs
e);