1 instantiation of TrackingProfile
System.Workflow.Runtime (1)
Tracking\TrackingProfileSerializer.cs (1)
81profile = new TrackingProfile();
34 references to TrackingProfile
System.Workflow.Runtime (34)
RTTrackingProfile.cs (3)
35private TrackingProfile _profile = null; 82internal RTTrackingProfile(TrackingProfile profile, Activity root, Type serviceType) 101TrackingProfile privateProfile = null;
Tracking.cs (6)
338TrackingProfile profile = null; 1214TrackingProfile profile = null; 1282TrackingProfile profile = service.GetProfile(workflowType, versionId); 1318TrackingProfile profile = service.GetProfile(instanceId); 1328private RTTrackingProfile CreateProfile(TrackingProfile profile, Type workflowType, Type serviceType) 1336private RTTrackingProfile CreateProfile(TrackingProfile profile, Activity schedule, Type serviceType)
Tracking\ProfileEventArgs.cs (3)
17private TrackingProfile _profile = null; 22public ProfileUpdatedEventArgs(Type workflowType, TrackingProfile profile) 28public TrackingProfile TrackingProfile
Tracking\SqlTrackingService.cs (9)
242protected internal override TrackingProfile GetProfile(Type workflowType, Version profileVersion) 252protected internal override bool TryGetProfile(Type workflowType, out TrackingProfile profile) 265protected internal override TrackingProfile GetProfile(Guid scheduleInstanceId) 267TrackingProfile profile = null; 272private bool GetProfile(Guid scheduleInstanceId, out TrackingProfile profile) 336protected internal override bool TryReloadProfile(Type workflowType, Guid scheduleInstanceId, out TrackingProfile profile) 390TrackingProfile profile = null; 624private TrackingProfile GetProfileByScheduleType(Type workflowType, Version profileVersionId, bool wantToCreateDefault) 628TrackingProfile profile = null;
Tracking\TrackingProfileSerializer.cs (9)
62public TrackingProfile Deserialize(TextReader reader) 64TrackingProfile profile = null; 143private void CreateTrackPoints(XmlReader reader, TrackingProfile profile) 180private void CreateActivityTrackPoint(XmlReader reader, TrackingProfile profile) 296private void CreateUserTrackPoint(XmlReader reader, TrackingProfile profile) 451private void CreateWorkflowTrackPoint(XmlReader reader, TrackingProfile profile) 864public void Serialize(TextWriter writer, TrackingProfile profile) 882private void Write(TrackingProfile profile, XmlTextWriter writer) 910private void WriteTrackPoints(TrackingProfile profile, XmlTextWriter writer)
Tracking\TrackingService.cs (4)
19protected internal abstract bool TryGetProfile(Type workflowType, out TrackingProfile profile); 21protected internal abstract TrackingProfile GetProfile(Type workflowType, Version profileVersionId); 23protected internal abstract TrackingProfile GetProfile(Guid workflowInstanceId); 25protected internal abstract bool TryReloadProfile(Type workflowType, Guid workflowInstanceId, out TrackingProfile profile);