1 instantiation of MatchState
System.ServiceModel (1)
System\ServiceModel\Channels\MsmqBindingMonitor.cs (1)
279state = new MatchState(name, this.iteration, isPrivate);
18 references to MatchState
System.ServiceModel (18)
System\ServiceModel\Channels\MsmqBindingMonitor.cs (18)
23Dictionary<string, MatchState> knownPublicQueues = new Dictionary<string, MatchState>(); 24Dictionary<string, MatchState> knownPrivateQueues = new Dictionary<string, MatchState>(); 137void MatchFilter(MsmqBindingFilter filter, IEnumerable<MatchState> queues) 140foreach (MatchState state in queues) 158void RetryMatchFilters(IEnumerable<MatchState> queues) 161foreach (MatchState state in queues) 170void MatchQueue(MatchState state) 270void ProcessFoundQueues(MessageQueue[] queues, Dictionary<string, MatchState> knownQueues, bool isPrivate) 274MatchState state; 304void ProcessLostQueues(Dictionary<string, MatchState> knownQueues) 306List<MatchState> lostQueues = new List<MatchState>(); 308foreach (MatchState state in knownQueues.Values) 317foreach (MatchState state in lostQueues) 327void RematchQueues(MsmqBindingFilter filter, IEnumerable<MatchState> queues) 330foreach (MatchState state in queues)