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