25 references to InstanceId
System.WorkflowServices (25)
System\ServiceModel\Dispatcher\DurableInstanceContextProvider.cs (2)
157removed = contextCache.RemoveIfNotBusy(durableInstance.InstanceId, instanceContext); 163string traceText = SR.GetString(SR.TraceCodeDICPInstanceContextRemovedFromCache, durableInstance.InstanceId);
System\ServiceModel\Dispatcher\DurableInstanceProvider.cs (1)
49this.durableInstanceContextProvider.UnbindAbortedInstance(instanceContext, durableInstance.InstanceId);
System\ServiceModel\Dispatcher\DurableOperationContext.cs (1)
18return durableInstance.InstanceId;
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (7)
186string traceText = SR.GetString(SR.TraceCodeServiceDurableInstanceDeleted, this.InstanceId); 210string traceText = SR2.GetString(SR2.ServiceDurableInstanceSavedDetails, this.InstanceId, (this.lockingProvider != null) ? "True" : "False"); 234string traceText = SR2.GetString(SR2.ServiceDurableInstanceSavedDetails, this.InstanceId, (this.lockingProvider != null) ? "True" : "False"); 283new InstanceNotFoundException(this.InstanceId)); 305string traceText = SR2.GetString(SR2.ServiceDurableInstanceLoadedDetails, this.InstanceId, (this.lockingProvider != null) ? "True" : "False"); 385string traceText = SR.GetString(SR.TraceCodeServiceDurableInstanceDisposed, this.InstanceId); 418bool stillReferenced = this.contextManager.GetReferenceCount(this.InstanceId) > 1;
System\ServiceModel\Dispatcher\WorkflowDurableInstance.cs (5)
56this.workflowInstance = this.workflowDefinition.CreateWorkflow(this.InstanceId); 61string traceText = SR.GetString(SR.TraceCodeWorkflowDurableInstanceActivated, InstanceId); 79this.instanceContextProvider.InstanceLifeTimeManager.CleanUp(this.InstanceId); 86this.workflowInstance = this.workflowDefinition.WorkflowRuntime.GetWorkflow(InstanceId); 90string traceText = SR.GetString(SR.TraceCodeWorkflowDurableInstanceLoaded, InstanceId);
System\ServiceModel\Dispatcher\WorkflowInstanceContextProvider.cs (8)
68workflowDurableInstance.InstanceId, 72workflowDurableInstance.InstanceId, 98this.InstanceLifeTimeManager.NotifyWorkflowActivationComplete(workflowDurableInstance.InstanceId, 101(workflowDurableInstance.InstanceId, instanceContext), 126return (!this.InstanceLifeTimeManager.IsInstanceInMemory(workflowDurableInstance.InstanceId)) && 147if (this.InstanceLifeTimeManager.IsInstanceInMemory(workflowDurableInstance.InstanceId)) 149this.InstanceLifeTimeManager.NotifyWorkflowActivationComplete(workflowDurableInstance.InstanceId, 153workflowDurableInstance.InstanceId,
System\ServiceModel\Dispatcher\WorkflowInstanceProvider.cs (1)
28this.instanceContextProvider.InstanceLifeTimeManager.CleanUp(workflowDurableInstance.InstanceId);