3 writes to Notification
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlCommandBuilder.cs (2)
279sqlCommand.Notification = null; 288sqlCommand.Notification = notificationRequest;
fx\src\data\System\Data\SqlClient\SqlDependency.cs (1)
1119cmd.Notification = new SqlNotificationRequest();
18 references to Notification
System.Data (18)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (14)
3013if (null != Notification) { 3033Notification.Options = SqlDependency.GetDefaultComposedOptions(_activeConnection.DataSource, 3041Notification.UserData = _sqlDep.ComputeHashAndAddToDispatcher(this); 3110Task executeTask = _stateObj.Parser.TdsExecuteSQLBatch(this.CommandText, timeout, this.Notification, _stateObj, sync: true); 4423writeTask = _stateObj.Parser.TdsExecuteRPC(this, _sqlRPCParameterEncryptionReqArray, timeout, inSchema, this.Notification, _stateObj, CommandType.StoredProcedure == CommandType, sync: !asyncWrite); 4434writeTask = _stateObj.Parser.TdsExecuteRPC(this, _SqlRPCBatchArray, timeout, inSchema, this.Notification, _stateObj, CommandType.StoredProcedure == CommandType, sync: !asyncWrite ); 4451writeTask = _stateObj.Parser.TdsExecuteSQLBatch(text, timeout, this.Notification, _stateObj, 4455writeTask = _stateObj.Parser.TdsExecuteSQLBatch(text, timeout, this.Notification, _stateObj, sync: !asyncWrite); 4500writeTask = _stateObj.Parser.TdsExecuteRPC(this, _rpcArrayOf1, timeout, inSchema, this.Notification, _stateObj, CommandType.StoredProcedure == CommandType, sync:!asyncWrite); 4520Task executeTask = _stateObj.Parser.TdsExecuteSQLBatch(optionSettings, timeout, this.Notification, _stateObj, sync: true); 4535writeTask=_stateObj.Parser.TdsExecuteRPC(this, _rpcArrayOf1, timeout, inSchema, this.Notification, _stateObj, CommandType.StoredProcedure == CommandType, sync:!asyncWrite); 4776_sqlDep.StartTimer(Notification); 4897if ((Notification != null) && !_activeConnection.IsYukonOrNewer) { 6202if (null != Notification){
fx\src\data\System\Data\SqlClient\SqlCommandBuilder.cs (1)
276SqlNotificationRequest notificationRequest = sqlCommand.Notification;
fx\src\data\System\Data\SqlClient\SqlDependency.cs (3)
1107if (cmd.Notification != null) { 1120cmd.Notification.Timeout = _timeout; 1124cmd.Notification.Options = _options;