23 references to SqlNotificationInfo
System.Data (23)
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) { 1035SqlNotificationInfo.AlreadyChanged != info && 1142Invalidate(SqlNotificationType.Subscribe, SqlNotificationInfo.AlreadyChanged, SqlNotificationSource.Client);
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (11)
668new SqlNotification(SqlNotificationInfo.Error, 707new SqlNotification(SqlNotificationInfo.Error, 967SqlNotificationInfo info = SqlNotificationInfo.Unknown; 1017info = SqlNotificationInfo.Options; 1020info = SqlNotificationInfo.PreviousFire; 1023info = SqlNotificationInfo.TemplateLimit; 1026SqlNotificationInfo temp = (SqlNotificationInfo)Enum.Parse(typeof(SqlNotificationInfo), value, true); 1027if (Enum.IsDefined(typeof(SqlNotificationInfo), temp)) {
fx\src\data\System\Data\SqlClient\SqlDependencyUtils.cs (4)
534dependencies[i].Invalidate(SqlNotificationType.Change, SqlNotificationInfo.Error, SqlNotificationSource.Timeout); 577private readonly SqlNotificationInfo _info; 582internal SqlNotification(SqlNotificationInfo info, SqlNotificationSource source, SqlNotificationType type, string key) { 589internal SqlNotificationInfo Info {
fx\src\data\System\Data\SqlClient\SqlNotificationEventArgs.cs (4)
18private SqlNotificationInfo _info; 21public SqlNotificationEventArgs(SqlNotificationType type, SqlNotificationInfo info, SqlNotificationSource source) { 33public SqlNotificationInfo Info { 45internal static SqlNotificationEventArgs NotifyError = new SqlNotificationEventArgs(SqlNotificationType.Subscribe, SqlNotificationInfo.Error, SqlNotificationSource.Object);