8 references to InstanceKey
System.Activities (2)
System\Activities\Runtime\BookmarkScopeManager.cs (2)
486this.keysToAssociate.Add(new InstanceKey(newScope.Id)); 517this.keysToDisassociate.Add(new InstanceKey(scope.Id));
System.Activities.DurableInstancing (3)
System\Activities\DurableInstancing\StoreUtilities.cs (3)
72new InstanceKey(reader.GetGuid(1)), Guid.Empty); 75returnValue = new InstanceKeyNotReadyException(commandName, new InstanceKey(reader.GetGuid(1))); 84returnValue = new InstanceKeyCompleteException(commandName, new InstanceKey(reader.GetGuid(1)));
System.Runtime.DurableInstancing (3)
System\Runtime\DurableInstancing\InstanceKeyCollisionException.cs (1)
56InstanceKey = guid == Guid.Empty ? null : new InstanceKey(guid);
System\Runtime\DurableInstancing\InstanceKeyCompleteException.cs (1)
53InstanceKey = guid == Guid.Empty ? null : new InstanceKey(guid);
System\Runtime\DurableInstancing\InstanceKeyNotReadyException.cs (1)
53InstanceKey = guid == Guid.Empty ? null : new InstanceKey(guid);