15 references to WorkflowIdentityFilter
System.Activities (9)
System\Activities\WorkflowApplication.cs (6)
1434public static void CreateDefaultInstanceOwner(InstanceStore instanceStore, WorkflowIdentity definitionIdentity, WorkflowIdentityFilter identityFilter) 1439public static void CreateDefaultInstanceOwner(InstanceStore instanceStore, WorkflowIdentity definitionIdentity, WorkflowIdentityFilter identityFilter, TimeSpan timeout) 1456WorkflowIdentityFilter identityFilter, AsyncCallback callback, object state) 1462WorkflowIdentityFilter identityFilter, TimeSpan timeout, AsyncCallback callback, object state) 1558static CreateWorkflowOwnerWithIdentityCommand GetCreateOwnerCommand(WorkflowIdentity definitionIdentity, WorkflowIdentityFilter identityFilter) 1564if (definitionIdentity == null && identityFilter != WorkflowIdentityFilter.Any)
System\Activities\WorkflowIdentityFilter.cs (3)
18public static bool IsValid(this WorkflowIdentityFilter value) 20return (int)value >= (int)WorkflowIdentityFilter.Exact && (int)value <= (int)WorkflowIdentityFilter.AnyRevision;
System.Activities.DurableInstancing (6)
System\Activities\DurableInstancing\SerializationUtilities.cs (6)
297int workflowIdentityFilter = (int)WorkflowIdentityFilter.Exact; 324if (instanceValue.Value is WorkflowIdentityFilter) 333if (workflowIdentityFilter != (int)WorkflowIdentityFilter.Exact && 334workflowIdentityFilter != (int)WorkflowIdentityFilter.Any && 335workflowIdentityFilter != (int)WorkflowIdentityFilter.AnyRevision) 337throw FxTrace.Exception.AsError(new InstancePersistenceCommandException(SR.InvalidMetadataValue(Workflow45Namespace.DefinitionIdentityFilter, typeof(WorkflowIdentityFilter).Name)));