2 instantiations of CorrelationKey
System.Activities.DurableInstancing (2)
System\Activities\DurableInstancing\CorrelationKey.cs (2)
72result.Add(new CorrelationKey(guid)); 91result.Add(new CorrelationKey(keyValuePair.Key, keyValuePair.Value, encodingOption));
20 references to CorrelationKey
System.Activities.DurableInstancing (20)
System\Activities\DurableInstancing\CorrelationKey.cs (7)
62public static List<CorrelationKey> BuildKeyList(ICollection<Guid> keys) 64List<CorrelationKey> result = null; 68result = new List<CorrelationKey>(keys.Count); 77result = new List<CorrelationKey>(); 83public static List<CorrelationKey> BuildKeyList(IDictionary<Guid, IDictionary<XName, InstanceValue>> keys, InstanceEncodingOption encodingOption) 85List<CorrelationKey> result = new List<CorrelationKey>();
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (1)
50List<CorrelationKey> keysToAssociate
System\Activities\DurableInstancing\LoadWorkflowByKeyAsyncResult.cs (2)
34List<CorrelationKey> keysToAssociate = CorrelationKey.BuildKeyList(keyLoadCommand.InstanceKeysToAssociate, base.Store.InstanceEncodingOption);
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (6)
498List<CorrelationKey> keysToAssociate = CorrelationKey.BuildKeyList(saveWorkflowCommand.InstanceKeysToAssociate, base.Store.InstanceEncodingOption); 499List<CorrelationKey> keysToComplete = CorrelationKey.BuildKeyList(saveWorkflowCommand.InstanceKeysToComplete); 500List<CorrelationKey> keysToFree = CorrelationKey.BuildKeyList(saveWorkflowCommand.InstanceKeysToFree);
System\Activities\DurableInstancing\SerializationUtilities.cs (4)
24public static byte[] CreateKeyBinaryBlob(List<CorrelationKey> correlationKeys) 34foreach (CorrelationKey correlationKey in correlationKeys) 45public static object CreateCorrelationKeyXmlBlob(List<CorrelationKey> correlationKeys) 58foreach (CorrelationKey correlationKey in correlationKeys)