3 instantiations of SqlNotificationEventArgs
System.Data (3)
fx\src\data\System\Data\SqlClient\SqlDependency.cs (2)
394sqlNotificationEvent = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.AlreadyChanged, SqlNotificationSource.Client); 1061pair.Invoke(new SqlNotificationEventArgs(type, info, source));
fx\src\data\System\Data\SqlClient\SqlNotificationEventArgs.cs (1)
45internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);
9 references to SqlNotificationEventArgs
System.Data (7)
fx\src\data\System\Data\SqlClient\OnChangedEventHandler.cs (1)
15public delegate void OnChangeEventHandler(object sender, SqlNotificationEventArgs e);
fx\src\data\System\Data\SqlClient\SqlDependency.cs (4)
168private SqlNotificationEventArgs _args; 203internal void Invoke(SqlNotificationEventArgs args) { 210pair._eventHandler(pair._dependency, (SqlNotificationEventArgs) pair._args); 389SqlNotificationEventArgs sqlNotificationEvent = null;
fx\src\data\System\Data\SqlClient\SqlNotificationEventArgs.cs (1)
45internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);
fx\src\data\System\Data\SqlClient\SqlUtil.cs (1)
643static internal Exception SqlNotificationException(SqlNotificationEventArgs notify){
System.Runtime.Caching (1)
System\Caching\SqlChangeMonitor.cs (1)
37private void OnDependencyChanged(Object sender, SqlNotificationEventArgs e) {
System.Web (1)
Cache\SqlCacheDependency.cs (1)
172void OnSQL9SqlDependencyChanged(Object sender, SqlNotificationEventArgs e) {