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