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