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