1 instantiation of SqlDependencyPerAppDomainDispatcher
System.Data (1)
fx\src\data\System\Data\SqlClient\SqlDependencyUtils.cs (1)
32
SingletonInstance = new
SqlDependencyPerAppDomainDispatcher
(); // singleton object
15 references to SqlDependencyPerAppDomainDispatcher
System.Data (15)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (1)
2995
SqlDependency dependency =
SqlDependencyPerAppDomainDispatcher
.SingletonInstance.LookupDependencyEntry(notifyContext);
fx\src\data\System\Data\SqlClient\SqlDependency.cs (5)
303
SqlDependencyPerAppDomainDispatcher
.SingletonInstance.AddDependencyEntry(this); // Add dep to hashtable with Id.
625
SqlDependencyPerAppDomainDispatcher
.SingletonInstance,
655
SqlDependencyPerAppDomainDispatcher
.SingletonInstance);
1018
string idString =
SqlDependencyPerAppDomainDispatcher
.SingletonInstance.AddCommandEntry(commandHash, this); // Add to map.
1088
SqlDependencyPerAppDomainDispatcher
.SingletonInstance.StartTimer(this);
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (8)
534
SqlDependencyPerAppDomainDispatcher
dispatcher;
1235
private Dictionary<string,
SqlDependencyPerAppDomainDispatcher
> _sqlDependencyPerAppDomainDispatchers; // AppDomainKey->Callback
1264
_sqlDependencyPerAppDomainDispatchers = new Dictionary<string,
SqlDependencyPerAppDomainDispatcher
>();
1352
foreach (KeyValuePair<string,
SqlDependencyPerAppDomainDispatcher
> entry in _sqlDependencyPerAppDomainDispatchers) {
1353
SqlDependencyPerAppDomainDispatcher
perAppDomainDispatcher = entry.Value;
1428
SqlDependencyPerAppDomainDispatcher
dispatcher,
1448
SqlDependencyPerAppDomainDispatcher
dispatcher) {
1473
SqlDependencyPerAppDomainDispatcher
dispatcher,
fx\src\data\System\Data\SqlClient\SqlDependencyUtils.cs (1)
31
internal static readonly
SqlDependencyPerAppDomainDispatcher