19 references to SqlNotificationType
System.Data (19)
fx\src\data\System\Data\SqlClient\SqlDependency.cs (3)
394sqlNotificationEvent = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.AlreadyChanged, SqlNotificationSource.Client); 1027internal void Invalidate(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { 1142Invalidate(SqlNotificationType.Subscribe, SqlNotificationInfo.AlreadyChanged, SqlNotificationSource.Client);
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (8)
670SqlNotificationType.Change, 709SqlNotificationType.Change, 966SqlNotificationType type = SqlNotificationType.Unknown; 983SqlNotificationType temp = (SqlNotificationType)Enum.Parse(typeof(SqlNotificationType), xmlReader.Value, true); 984if (Enum.IsDefined(typeof(SqlNotificationType), temp)) {
fx\src\data\System\Data\SqlClient\SqlDependencyUtils.cs (4)
534dependencies[i].Invalidate(SqlNotificationType.Change, SqlNotificationInfo.Error, SqlNotificationSource.Timeout); 579private readonly SqlNotificationType _type; 582internal SqlNotification(SqlNotificationInfo info, SqlNotificationSource source, SqlNotificationType type, string key) { 607internal SqlNotificationType Type {
fx\src\data\System\Data\SqlClient\SqlNotificationEventArgs.cs (4)
17private SqlNotificationType _type; 21public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { 27public SqlNotificationType Type { 45internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);