2 writes to suggestedIdOrId
System.ServiceModel.Activities (2)
System\ServiceModel\Activities\Dispatcher\PersistenceProviderDirectory.cs (2)
756this.suggestedIdOrId = suggestedIdOrId; 965this.suggestedIdOrId = Guid.NewGuid();
10 references to suggestedIdOrId
System.ServiceModel.Activities (10)
System\ServiceModel\Activities\Dispatcher\PersistenceProviderDirectory.cs (10)
884this.result = this.loadAny ? null : this.ppd.LoadFromCache(this.key, this.suggestedIdOrId, this.canCreateInstance); 901throw FxTrace.Exception.AsError(new InstanceNotReadyException(null, this.suggestedIdOrId)); 957this.context = new PersistenceContext(this.ppd, this.suggestedIdOrId == Guid.Empty ? Guid.NewGuid() : this.suggestedIdOrId, this.key, this.associatedKeys); 963if (this.suggestedIdOrId == Guid.Empty) 967this.handle = this.ppd.store.CreateInstanceHandle(this.ppd.owner, this.suggestedIdOrId); 974InstancePersistenceCommand loadCommand = this.ppd.CreateLoadCommandHelper(this.key, out this.handle, this.canCreateInstance, this.suggestedIdOrId, this.associatedKeys, this.loadAny); 1059this.result = this.loadAny ? null : this.ppd.LoadFromCache(this.key, this.suggestedIdOrId, this.canCreateInstance); 1115this.context = new PersistenceContext(this.ppd, this.ppd.store, this.handle, this.suggestedIdOrId, null, true, false, null, null); 1218this.ppd.instanceCache.TryGetValue(this.suggestedIdOrId, out this.result);