2 types derived from DurableInstance
System.WorkflowServices (2)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (1)
16class ServiceDurableInstance : DurableInstance
System\ServiceModel\Dispatcher\WorkflowDurableInstance.cs (1)
11class WorkflowDurableInstance : DurableInstance
16 references to DurableInstance
System.WorkflowServices (16)
System\ServiceModel\Dispatcher\DurableInstanceContextProvider.cs (6)
99DurableInstance durableInstance; 142DurableInstance durableInstance = instanceContext.Extensions.Find<DurableInstance>(); 150typeof(DurableInstance).Name))); 214protected abstract DurableInstance OnCreateNewInstance(Guid instanceId); 215protected abstract DurableInstance OnGetExistingInstance(Guid instanceId);
System\ServiceModel\Dispatcher\DurableInstanceProvider.cs (3)
29return instanceContext.Extensions.Find<DurableInstance>(); 44DurableInstance durableInstance = (DurableInstance) instance;
System\ServiceModel\Dispatcher\DurableMessageDispatchInspector.cs (3)
90DurableInstance durableInstance = OperationContext.Current.InstanceContext.Extensions.Find<DurableInstance>(); 98typeof(DurableInstance).Name)));
System\ServiceModel\Dispatcher\ServiceDurableInstanceContextProvider.cs (2)
60protected override DurableInstance OnCreateNewInstance(Guid instanceId) 81protected override DurableInstance OnGetExistingInstance(Guid instanceId)
System\ServiceModel\Dispatcher\WorkflowInstanceContextProvider.cs (2)
176protected override DurableInstance OnCreateNewInstance(Guid instanceId) 190protected override DurableInstance OnGetExistingInstance(Guid instanceId)