Base:
property
Annotations
System.Workflow.Runtime.Tracking.TrackingRecord.Annotations
8 references to Annotations
System.Workflow.Runtime (8)
RTTrackingProfile.cs (1)
272
record.
Annotations
.AddRange(point.Annotations);
Tracking\SqlTrackingService.cs (6)
1395
List<KeyValuePair<long, string>> annotations = new List<KeyValuePair<long, string>>(record1.
Annotations
.Count + (null == record2 ? 0 : record2.
Annotations
.Count));
1397
foreach (string s in record1.
Annotations
)
1402
foreach (string s in record2.
Annotations
)
2085
List<KeyValuePair<long, string>> annotations = new List<KeyValuePair<long, string>>(record.
Annotations
.Count);
2086
foreach (string s in record.
Annotations
)
Tracking\SqlTrackingWorkflowInstance.cs (1)
535
rec.
Annotations
.Add(annotation);