15 references to NonSerialized
System.Workflow.ComponentModel (8)
AuthoringOM\Activity.cs (3)
159
private static readonly DependencyProperty SerializedStreamLengthProperty = DependencyProperty.RegisterAttached("SerializedStreamLength", typeof(long), typeof(Activity), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
174
internal static readonly DependencyProperty WorkflowDefinitionProperty = DependencyProperty.RegisterAttached("WorkflowDefinition", typeof(Activity), typeof(Activity), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
177
internal static readonly DependencyProperty WorkflowRuntimeProperty = DependencyProperty.RegisterAttached("WorkflowRuntime", typeof(IServiceProvider), typeof(Activity), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
AuthoringOM\ActivityExecutionContext.cs (1)
46
internal static readonly DependencyProperty CachedGrantedLocksProperty = DependencyProperty.RegisterAttached("CachedGrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
AuthoringOM\PropertyMetadata.cs (1)
162
return (this.options & DependencyPropertyOptions.
NonSerialized
) > 0;
AuthoringOM\ScheduleChanges.cs (2)
29
internal static DependencyProperty WorkflowChangeActionsProperty = DependencyProperty.RegisterAttached("WorkflowChangeActions", typeof(IList), typeof(WorkflowChanges), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
30
internal static DependencyProperty WorkflowChangeVersionProperty = DependencyProperty.RegisterAttached("WorkflowChangeVersion", typeof(Guid), typeof(WorkflowChanges), new PropertyMetadata(Guid.Empty, DependencyPropertyOptions.
NonSerialized
));
AuthoringOM\Sequence.cs (1)
23
private static DependencyProperty ActiveChildRemovedProperty = DependencyProperty.RegisterAttached("ActiveChildRemoved", typeof(bool), typeof(SequenceHelper), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
System.Workflow.Runtime (5)
WorkflowDefinitionDispenser.cs (1)
589
internal static readonly DependencyProperty WorkflowDefinitionLockObjectProperty = DependencyProperty.RegisterAttached("WorkflowDefinitionLockObject", typeof(object), typeof(WorkflowDefinitionLock), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
WorkflowExecutor.cs (3)
28
internal readonly static DependencyProperty WorkflowExecutorProperty = DependencyProperty.RegisterAttached("WorkflowExecutor", typeof(IWorkflowCoreRuntime), typeof(WorkflowExecutor), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
32
internal readonly static DependencyProperty TransientBatchProperty = DependencyProperty.RegisterAttached("TransientBatch", typeof(IWorkBatch), typeof(WorkflowExecutor), new PropertyMetadata(null, DependencyPropertyOptions.
NonSerialized
, new GetValueOverride(GetTransientBatch), null));
33
internal readonly static DependencyProperty TransactionalPropertiesProperty = DependencyProperty.RegisterAttached("TransactionalProperties", typeof(TransactionalProperties), typeof(WorkflowExecutor), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
WorkflowQueuingService.cs (1)
35
public readonly static DependencyProperty PendingMessagesProperty = DependencyProperty.RegisterAttached("PendingMessages", typeof(Queue), typeof(WorkflowQueuingService), new PropertyMetadata(DependencyPropertyOptions.
NonSerialized
));
System.WorkflowServices (2)
System\Workflow\Activities\DynamicContractTypeBuilder.cs (1)
27
new PropertyMetadata(null, DependencyPropertyOptions.
NonSerialized
));
System\Workflow\Activities\OperationInfoBase.cs (1)
31
new PropertyMetadata(null, DependencyPropertyOptions.
NonSerialized
));