22 references to PropertyMetadata
System.Workflow.Activities (10)
Delay.cs (3)
33
public static readonly DependencyProperty TimeoutDurationProperty = DependencyProperty.Register("TimeoutDuration", typeof(TimeSpan), typeof(DelayActivity), new
PropertyMetadata
(new TimeSpan(0, 0, 0)));
172
static DependencyProperty SubscriptionIDProperty = DependencyProperty.Register("SubscriptionID", typeof(Guid), typeof(DelayActivity), new
PropertyMetadata
(Guid.NewGuid()));
173
static DependencyProperty IsInEventActivityModeProperty = DependencyProperty.Register("IsInEventActivityMode", typeof(bool), typeof(DelayActivity), new
PropertyMetadata
(false));
EventHandlers.cs (1)
41
static DependencyProperty IsScopeCompletedProperty = DependencyProperty.Register("IsScopeCompleted", typeof(bool), typeof(EventHandlersActivity), new
PropertyMetadata
(false));
EventSinkActivity.cs (1)
33
private static DependencyProperty ActivitySubscribedProperty = DependencyProperty.Register("ActivitySubscribed", typeof(bool), typeof(HandleExternalEventActivity), new
PropertyMetadata
(false));
InvokeSchedule.cs (1)
43
public static readonly DependencyProperty InstanceIdProperty = DependencyProperty.Register("InstanceId", typeof(Guid), typeof(InvokeWorkflowActivity), new
PropertyMetadata
(Guid.Empty));
Listen.cs (1)
191
static DependencyProperty IsListenTrigerredProperty = DependencyProperty.Register("IsListenTrigerred", typeof(bool), typeof(ListenActivity), new
PropertyMetadata
(false));
Parallel.cs (1)
177
static DependencyProperty IsExecutingProperty = DependencyProperty.Register("IsExecuting", typeof(bool), typeof(ParallelActivity), new
PropertyMetadata
(false));
Task.cs (1)
39
public static readonly DependencyProperty ExecutionTypeProperty = DependencyProperty.Register("ExecutionType", typeof(ExecutionType), typeof(ReplicatorActivity), new
PropertyMetadata
(ExecutionType.Sequence));
WebServiceReceive.cs (1)
42
public static readonly DependencyProperty ActivitySubscribedProperty = DependencyProperty.Register("ActivitySubscribed", typeof(bool), typeof(WebServiceInputActivity), new
PropertyMetadata
(false));
System.Workflow.ComponentModel (6)
AuthoringOM\Activity.cs (2)
155
public static readonly DependencyProperty ActivityContextGuidProperty = DependencyProperty.RegisterAttached("ActivityContextGuid", typeof(Guid), typeof(Activity), new
PropertyMetadata
(Guid.Empty));
168
internal static readonly DependencyProperty HasPrimaryClosedProperty = DependencyProperty.RegisterAttached("HasPrimaryClosed", typeof(bool), typeof(Activity), new
PropertyMetadata
(false));
AuthoringOM\DependencyProperty.cs (1)
205
metadata = new
PropertyMetadata
(defaultValue);
AuthoringOM\Filters\CompensationHandlingFilter.cs (2)
9
public static DependencyProperty CompensateProcessedProperty = DependencyProperty.RegisterAttached("CompensateProcessed", typeof(bool), typeof(CompensationHandlingFilter), new
PropertyMetadata
(false));
10
internal static DependencyProperty LastCompensatedOrderIdProperty = DependencyProperty.RegisterAttached("LastCompensatedOrderId", typeof(int), typeof(CompensationHandlingFilter), new
PropertyMetadata
(false));
AuthoringOM\Filters\FaultHandlingFilter.cs (1)
12
public static DependencyProperty FaultProcessedProperty = DependencyProperty.RegisterAttached("FaultProcessed", typeof(bool), typeof(FaultAndCancellationHandlingFilter), new
PropertyMetadata
(false));
System.Workflow.Runtime (5)
WorkflowExecutor.cs (5)
34
internal readonly static DependencyProperty WorkflowInstanceIdProperty = DependencyProperty.RegisterAttached("WorkflowInstanceId", typeof(Guid), typeof(WorkflowExecutor), new
PropertyMetadata
(Guid.NewGuid()));
35
internal readonly static DependencyProperty IsBlockedProperty = DependencyProperty.RegisterAttached("IsBlocked", typeof(bool), typeof(WorkflowExecutor), new
PropertyMetadata
(false));
36
internal readonly static DependencyProperty WorkflowStatusProperty = DependencyProperty.RegisterAttached("WorkflowStatus", typeof(WorkflowStatus), typeof(WorkflowExecutor), new
PropertyMetadata
(WorkflowStatus.Created));
43
private static DependencyProperty IsSuspensionRequestedProperty = DependencyProperty.RegisterAttached("IsSuspensionRequested", typeof(bool), typeof(WorkflowExecutor), new
PropertyMetadata
(false));
44
private static DependencyProperty IsIdleProperty = DependencyProperty.RegisterAttached("IsIdle", typeof(bool), typeof(WorkflowExecutor), new
PropertyMetadata
(false));
System.WorkflowServices (1)
System\Workflow\Activities\ReceiveActivity.cs (1)
106
new
PropertyMetadata
(QueueInitializationMode.Standalone));