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)
1402
this.UserData[typeof(
PersistOnCloseAttribute
)] = (this.GetType().GetCustomAttributes(typeof(
PersistOnCloseAttribute
), true).Length > 0);
1826
if (this.UserData.Contains(typeof(
PersistOnCloseAttribute
)))
1827
return (bool)this.UserData[typeof(
PersistOnCloseAttribute
)];
1829
object[] attributes = this.GetType().GetCustomAttributes(typeof(
PersistOnCloseAttribute
), true);
System.Workflow.Runtime (3)
WorkflowExecutor.cs (3)
3017
if (activity.UserData.Contains(typeof(
PersistOnCloseAttribute
)))
3019
persistOnClose = (bool)activity.UserData[typeof(
PersistOnCloseAttribute
)];
3023
object[] attributes = activity.GetType().GetCustomAttributes(typeof(
PersistOnCloseAttribute
), true);