33 references to PropertyMetadata
System.Workflow.Activities (8)
ConditionalBranch.cs (1)
40
public static readonly DependencyProperty ConditionProperty = DependencyProperty.Register("Condition", typeof(ActivityCondition), typeof(IfElseBranchActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
ConstrainedGroup.cs (2)
37
public static readonly DependencyProperty WhenConditionProperty = DependencyProperty.RegisterAttached("WhenCondition", typeof(ActivityCondition), typeof(ConditionedActivityGroup), new
PropertyMetadata
(DependencyPropertyOptions.Metadata), typeof(WhenUnlessConditionDynamicPropertyValidator));
40
public static readonly DependencyProperty UntilConditionProperty = DependencyProperty.Register("UntilCondition", typeof(ActivityCondition), typeof(ConditionedActivityGroup), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
EventSinkActivity.cs (1)
30
public static readonly DependencyProperty CorrelationTokenProperty = DependencyProperty.Register("CorrelationToken", typeof(CorrelationToken), typeof(HandleExternalEventActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
InvokeMethodActivity.cs (1)
30
public static readonly DependencyProperty CorrelationTokenProperty = DependencyProperty.Register("CorrelationToken", typeof(CorrelationToken), typeof(CallExternalMethodActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
StateMachineWorkflow.cs (2)
34
public static readonly DependencyProperty InitialStateNameProperty = DependencyProperty.Register(StateMachineWorkflowActivity.InitialStateNamePropertyName, typeof(string), typeof(StateMachineWorkflowActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
35
public static readonly DependencyProperty CompletedStateNameProperty = DependencyProperty.Register(StateMachineWorkflowActivity.CompletedStateNamePropertyName, typeof(string), typeof(StateMachineWorkflowActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
Task.cs (1)
38
public static readonly DependencyProperty UntilConditionProperty = DependencyProperty.Register("UntilCondition", typeof(ActivityCondition), typeof(ReplicatorActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
System.Workflow.ComponentModel (15)
AuthoringOM\Activity.cs (9)
147
private static DependencyProperty QualifiedNameProperty = DependencyProperty.Register("QualifiedName", typeof(string), typeof(Activity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
148
private static DependencyProperty DottedPathProperty = DependencyProperty.Register("DottedPath", typeof(string), typeof(Activity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
152
internal static readonly DependencyProperty SynchronizationHandlesProperty = DependencyProperty.Register("SynchronizationHandles", typeof(ICollection<String>), typeof(Activity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
158
internal static readonly DependencyProperty CompletedOrderIdProperty = DependencyProperty.Register("CompletedOrderId", typeof(int), typeof(Activity), new
PropertyMetadata
(new Int32()));
159
private static readonly DependencyProperty SerializedStreamLengthProperty = DependencyProperty.RegisterAttached("SerializedStreamLength", typeof(long), typeof(Activity), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
167
private static readonly DependencyProperty LockCountOnStatusChangeProperty = DependencyProperty.RegisterAttached("LockCountOnStatusChange", typeof(int), typeof(Activity), new
PropertyMetadata
(new Int32()));
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));
201
internal static readonly DependencyProperty CustomActivityProperty = DependencyProperty.Register("CustomActivity", typeof(bool), typeof(Activity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
AuthoringOM\ActivityExecutionContext.cs (1)
46
internal static readonly DependencyProperty CachedGrantedLocksProperty = DependencyProperty.RegisterAttached("CachedGrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
AuthoringOM\Behaviors\ExceptionHandler.cs (1)
29
public static readonly DependencyProperty FaultTypeProperty = DependencyProperty.Register("FaultType", typeof(Type), typeof(FaultHandlerActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
AuthoringOM\ParameterBinding.cs (1)
19
public static readonly DependencyProperty ParameterNameProperty = DependencyProperty.Register("ParameterName", typeof(string), typeof(WorkflowParameterBinding), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
AuthoringOM\ScheduleChanges.cs (2)
28
public static readonly DependencyProperty ConditionProperty = DependencyProperty.RegisterAttached("Condition", typeof(ActivityCondition), typeof(WorkflowChanges), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
29
internal static DependencyProperty WorkflowChangeActionsProperty = DependencyProperty.RegisterAttached("WorkflowChangeActions", typeof(IList), typeof(WorkflowChanges), new
PropertyMetadata
(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));
33
internal readonly static DependencyProperty TransactionalPropertiesProperty = DependencyProperty.RegisterAttached("TransactionalProperties", typeof(TransactionalProperties), typeof(WorkflowExecutor), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
40
private static DependencyProperty ContextIdProperty = DependencyProperty.RegisterAttached("ContextId", typeof(int), typeof(WorkflowExecutor), new
PropertyMetadata
(new Int32()));
WorkflowQueuingService.cs (1)
35
public readonly static DependencyProperty PendingMessagesProperty = DependencyProperty.RegisterAttached("PendingMessages", typeof(Queue), typeof(WorkflowQueuingService), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
System.WorkflowServices (5)
System\Workflow\Activities\OperationParameterInfo.cs (1)
28
new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
System\Workflow\Activities\ReceiveActivity.cs (2)
83
new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
90
new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
System\Workflow\Activities\SendActivity.cs (2)
67
new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
74
new
PropertyMetadata
(DependencyPropertyOptions.Metadata));