2 writes to trackingParticipants
System.Activities (2)
System\Activities\Tracking\TrackingProvider.cs (2)
137this.trackingParticipants = new List<TrackingParticipant>(); 145this.trackingParticipants = null;
9 references to trackingParticipants
System.Activities (9)
System\Activities\Tracking\TrackingProvider.cs (9)
135if (this.trackingParticipants == null) 140this.trackingParticipants.Add(participant); 156for (int i = 0; i < this.trackingParticipants.Count; i++) 158TrackingParticipant participant = this.trackingParticipants[i]; 170bool shouldClone = this.trackingParticipants.Count > 1; 325while (this.currentParticipant < this.provider.trackingParticipants.Count) 327TrackingParticipant participant = this.provider.trackingParticipants[this.currentParticipant]; 357TrackingParticipant participant = thisPtr.provider.trackingParticipants[thisPtr.currentParticipant]; 383bool shouldClone = this.provider.trackingParticipants.Count > 1;