20 references to SqlNotificationSource
System.Data (20)
fx\src\data\System\Data\SqlClient\SqlDependency.cs (4)
394sqlNotificationEvent = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.AlreadyChanged, SqlNotificationSource.Client); 1027internal void Invalidate(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { 1036SqlNotificationSource.Client != source) { 1142Invalidate(SqlNotificationType.Subscribe, SqlNotificationInfo.AlreadyChanged, SqlNotificationSource.Client);
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (8)
669SqlNotificationSource.Client, 708SqlNotificationSource.Client, 968SqlNotificationSource source = SqlNotificationSource.Unknown; 998SqlNotificationSource temp = (SqlNotificationSource)Enum.Parse(typeof(SqlNotificationSource), xmlReader.Value, true); 999if (Enum.IsDefined(typeof(SqlNotificationSource), temp)) {
fx\src\data\System\Data\SqlClient\SqlDependencyUtils.cs (4)
534dependencies[i].Invalidate(SqlNotificationType.Change, SqlNotificationInfo.Error, SqlNotificationSource.Timeout); 578private readonly SqlNotificationSource _source; 582internal SqlNotification(SqlNotificationInfo info, SqlNotificationSource source, SqlNotificationType type, string key) { 601internal SqlNotificationSource Source {
fx\src\data\System\Data\SqlClient\SqlNotificationEventArgs.cs (4)
19private SqlNotificationSource _source; 21public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { 39public SqlNotificationSource Source { 45internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);