2 instantiations of PersistOnCloseAttribute
System.Workflow.ComponentModel (2)
AuthoringOM\Behaviors\CompensatableTransactionScopeActivity.cs (1)
19[PersistOnClose]
AuthoringOM\Behaviors\TransactionScope.cs (1)
19[PersistOnClose]
8 references to PersistOnCloseAttribute
System.Workflow.ComponentModel (5)
AuthoringOM\Activity.cs (5)
1402this.UserData[typeof(PersistOnCloseAttribute)] = (this.GetType().GetCustomAttributes(typeof(PersistOnCloseAttribute), true).Length > 0); 1826if (this.UserData.Contains(typeof(PersistOnCloseAttribute))) 1827return (bool)this.UserData[typeof(PersistOnCloseAttribute)]; 1829object[] attributes = this.GetType().GetCustomAttributes(typeof(PersistOnCloseAttribute), true);
System.Workflow.Runtime (3)
WorkflowExecutor.cs (3)
3017if (activity.UserData.Contains(typeof(PersistOnCloseAttribute))) 3019persistOnClose = (bool)activity.UserData[typeof(PersistOnCloseAttribute)]; 3023object[] attributes = activity.GetType().GetCustomAttributes(typeof(PersistOnCloseAttribute), true);