144 instantiations of PropertyMetadata
System.Workflow.Activities (42)
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));
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 (5)
30
public static readonly DependencyProperty CorrelationTokenProperty = DependencyProperty.Register("CorrelationToken", typeof(CorrelationToken), typeof(HandleExternalEventActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
32
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(HandleExternalEventActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
33
private static DependencyProperty ActivitySubscribedProperty = DependencyProperty.Register("ActivitySubscribed", typeof(bool), typeof(HandleExternalEventActivity), new
PropertyMetadata
(false));
37
public static readonly DependencyProperty InterfaceTypeProperty = DependencyProperty.Register("InterfaceType", typeof(System.Type), typeof(HandleExternalEventActivity), new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
38
public static readonly DependencyProperty EventNameProperty = DependencyProperty.Register("EventName", typeof(string), typeof(HandleExternalEventActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
InvokeMethodActivity.cs (4)
30
public static readonly DependencyProperty CorrelationTokenProperty = DependencyProperty.Register("CorrelationToken", typeof(CorrelationToken), typeof(CallExternalMethodActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
31
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(CallExternalMethodActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
34
public static readonly DependencyProperty InterfaceTypeProperty = DependencyProperty.Register("InterfaceType", typeof(System.Type), typeof(CallExternalMethodActivity), new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
35
public static readonly DependencyProperty MethodNameProperty = DependencyProperty.Register("MethodName", typeof(string), typeof(CallExternalMethodActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
InvokeSchedule.cs (3)
38
public static readonly DependencyProperty TargetWorkflowProperty = DependencyProperty.Register("TargetWorkflow", typeof(Type), typeof(InvokeWorkflowActivity), new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
39
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(InvokeWorkflowActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
43
public static readonly DependencyProperty InstanceIdProperty = DependencyProperty.Register("InstanceId", typeof(Guid), typeof(InvokeWorkflowActivity), new
PropertyMetadata
(Guid.Empty));
InvokeWebService.cs (4)
62
public static readonly DependencyProperty ProxyClassProperty = DependencyProperty.Register("ProxyClass", typeof(Type), typeof(InvokeWebServiceActivity), new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
63
public static readonly DependencyProperty MethodNameProperty = DependencyProperty.Register("MethodName", typeof(string), typeof(InvokeWebServiceActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
64
public static readonly DependencyProperty SessionIdProperty = DependencyProperty.Register("SessionId", typeof(string), typeof(InvokeWebServiceActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
65
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(InvokeWebServiceActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
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));
Policy.cs (1)
34
public static readonly DependencyProperty RuleSetReferenceProperty = DependencyProperty.Register("RuleSetReference", typeof(RuleSetReference), typeof(PolicyActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
Rules\RuleDefinitions.cs (1)
19
public static readonly DependencyProperty RuleDefinitionsProperty = DependencyProperty.RegisterAttached("RuleDefinitions", typeof(RuleDefinitions), typeof(RuleDefinitions), new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata, new GetValueOverride(OnGetRuleConditions), null, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
SetState.cs (1)
34
public static readonly DependencyProperty TargetStateNameProperty = DependencyProperty.Register(TargetStateNamePropertyName, typeof(string), typeof(SetStateActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata, new ValidationOptionAttribute(ValidationOption.Optional)));
State.cs (1)
39
internal static DependencyProperty StateMachineExecutionStateProperty = DependencyProperty.Register(StateMachineExecutionState.StateMachineExecutionStateKey, typeof(StateMachineExecutionState), typeof(StateActivity), new
PropertyMetadata
());
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 (2)
38
public static readonly DependencyProperty UntilConditionProperty = DependencyProperty.Register("UntilCondition", typeof(ActivityCondition), typeof(ReplicatorActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
39
public static readonly DependencyProperty ExecutionTypeProperty = DependencyProperty.Register("ExecutionType", typeof(ExecutionType), typeof(ReplicatorActivity), new
PropertyMetadata
(ExecutionType.Sequence));
WebServiceFault.cs (1)
32
public static readonly DependencyProperty InputActivityNameProperty = DependencyProperty.Register("InputActivityName", typeof(string), typeof(WebServiceFaultActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
WebServiceReceive.cs (5)
35
public static readonly DependencyProperty IsActivatingProperty = DependencyProperty.Register("IsActivating", typeof(bool), typeof(WebServiceInputActivity), new
PropertyMetadata
(false, DependencyPropertyOptions.Metadata));
36
public static readonly DependencyProperty InterfaceTypeProperty = DependencyProperty.Register("InterfaceType", typeof(Type), typeof(WebServiceInputActivity), new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
37
public static readonly DependencyProperty MethodNameProperty = DependencyProperty.Register("MethodName", typeof(string), typeof(WebServiceInputActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
41
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(WebServiceInputActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
42
public static readonly DependencyProperty ActivitySubscribedProperty = DependencyProperty.Register("ActivitySubscribed", typeof(bool), typeof(WebServiceInputActivity), new
PropertyMetadata
(false));
WebServiceResponse.cs (2)
30
public static readonly DependencyProperty InputActivityNameProperty = DependencyProperty.Register("InputActivityName", typeof(string), typeof(WebServiceOutputActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
33
public static readonly DependencyProperty ParameterBindingsProperty = DependencyProperty.Register("ParameterBindings", typeof(WorkflowParameterBindingCollection), typeof(WebServiceOutputActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
While.cs (1)
32
public static readonly DependencyProperty ConditionProperty = DependencyProperty.Register("Condition", typeof(ActivityCondition), typeof(WhileActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new ValidationOptionAttribute(ValidationOption.Required) }));
System.Workflow.ComponentModel (48)
AuthoringOM\Activity.cs (18)
144
private static DependencyProperty NameProperty = DependencyProperty.Register("Name", typeof(string), typeof(Activity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata, new ValidationOptionAttribute(ValidationOption.Required)));
145
private static DependencyProperty DescriptionProperty = DependencyProperty.Register("Description", typeof(string), typeof(Activity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
146
private static DependencyProperty EnabledProperty = DependencyProperty.Register("Enabled", typeof(bool), typeof(Activity), new
PropertyMetadata
(true, DependencyPropertyOptions.Metadata));
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));
155
public static readonly DependencyProperty ActivityContextGuidProperty = DependencyProperty.RegisterAttached("ActivityContextGuid", typeof(Guid), typeof(Activity), new
PropertyMetadata
(Guid.Empty));
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));
162
internal static readonly DependencyProperty ExecutionStatusProperty = DependencyProperty.RegisterAttached("ExecutionStatus", typeof(ActivityExecutionStatus), typeof(Activity), new
PropertyMetadata
(ActivityExecutionStatus.Initialized, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
163
internal static readonly DependencyProperty ExecutionResultProperty = DependencyProperty.RegisterAttached("ExecutionResult", typeof(ActivityExecutionResult), typeof(Activity), new
PropertyMetadata
(ActivityExecutionResult.None, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
164
internal static readonly DependencyProperty WasExecutingProperty = DependencyProperty.RegisterAttached("WasExecuting", typeof(bool), typeof(Activity), new
PropertyMetadata
(false, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
167
private static readonly DependencyProperty LockCountOnStatusChangeProperty = DependencyProperty.RegisterAttached("LockCountOnStatusChange", typeof(int), typeof(Activity), new
PropertyMetadata
(new Int32()));
168
internal static readonly DependencyProperty HasPrimaryClosedProperty = DependencyProperty.RegisterAttached("HasPrimaryClosed", typeof(bool), typeof(Activity), new
PropertyMetadata
(false));
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));
1920
private static DependencyProperty CanModifyActivitiesProperty = DependencyProperty.Register("CanModifyActivities", typeof(bool), typeof(CompositeActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
AuthoringOM\ActivityExecutionContext.cs (2)
44
public static readonly DependencyProperty CurrentExceptionProperty = DependencyProperty.RegisterAttached("CurrentException", typeof(Exception), typeof(ActivityExecutionContext), new
PropertyMetadata
(null, DependencyPropertyOptions.Default, null, EnforceExceptionSemantics, true));
46
internal static readonly DependencyProperty CachedGrantedLocksProperty = DependencyProperty.RegisterAttached("CachedGrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
AuthoringOM\Behaviors\CompensatableTransactionScopeActivity.cs (1)
24
internal static readonly DependencyProperty TransactionOptionsProperty = DependencyProperty.Register("TransactionOptions", typeof(WorkflowTransactionOptions), typeof(CompensatableTransactionScopeActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
AuthoringOM\Behaviors\Compensate.cs (1)
31
public static readonly DependencyProperty TargetActivityNameProperty = DependencyProperty.Register("TargetActivityName", typeof(string), typeof(CompensateActivity), new
PropertyMetadata
("", DependencyPropertyOptions.Metadata));
AuthoringOM\Behaviors\ExceptionHandler.cs (1)
29
public static readonly DependencyProperty FaultTypeProperty = DependencyProperty.Register("FaultType", typeof(Type), typeof(FaultHandlerActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
AuthoringOM\Behaviors\TransactionScope.cs (1)
24
internal static readonly DependencyProperty TransactionOptionsProperty = DependencyProperty.Register("TransactionOptions", typeof(WorkflowTransactionOptions), typeof(TransactionScopeActivity), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Content) }));
AuthoringOM\Behaviors\WorkflowTransactionOptions.cs (2)
25
public static readonly DependencyProperty TimeoutDurationProperty = DependencyProperty.Register("TimeoutDuration", typeof(TimeSpan), typeof(WorkflowTransactionOptions), new
PropertyMetadata
(new TimeSpan(0, 0, 30), DependencyPropertyOptions.Metadata));
26
public static readonly DependencyProperty IsolationLevelProperty = DependencyProperty.Register("IsolationLevel", typeof(IsolationLevel), typeof(WorkflowTransactionOptions), new
PropertyMetadata
(IsolationLevel.Serializable, DependencyPropertyOptions.Metadata));
AuthoringOM\DependencyObject.cs (4)
23
private static DependencyProperty SiteProperty = DependencyProperty.Register("Site", typeof(ISite), typeof(DependencyObject), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
24
private static DependencyProperty ReadonlyProperty = DependencyProperty.Register("Readonly", typeof(bool), typeof(DependencyObject), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
25
private static DependencyProperty ParentDependencyObjectProperty = DependencyProperty.Register("ParentDependencyObject", typeof(DependencyObject), typeof(DependencyObject), new
PropertyMetadata
(null, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
26
private static DependencyProperty UserDataProperty = DependencyProperty.Register("UserData", typeof(IDictionary), typeof(DependencyObject), new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
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));
AuthoringOM\ParameterBinding.cs (1)
19
public static readonly DependencyProperty ParameterNameProperty = DependencyProperty.Register("ParameterName", typeof(string), typeof(WorkflowParameterBinding), new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
AuthoringOM\ScheduleChanges.cs (3)
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));
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));
AuthoringOM\Serializer\ActivityCodeDomSerializer.cs (1)
24
public static readonly DependencyProperty MarkupFileNameProperty = DependencyProperty.RegisterAttached("MarkupFileName", typeof(string), typeof(ActivityCodeDomSerializer), new
PropertyMetadata
(null, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
AuthoringOM\Serializer\ActivityMarkupSerializer.cs (4)
28
public static readonly DependencyProperty StartLineProperty = DependencyProperty.RegisterAttached("StartLine", typeof(int), typeof(ActivityMarkupSerializer), new
PropertyMetadata
(minusOne, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
29
public static readonly DependencyProperty StartColumnProperty = DependencyProperty.RegisterAttached("StartColumn", typeof(int), typeof(ActivityMarkupSerializer), new
PropertyMetadata
(minusOne, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
30
public static readonly DependencyProperty EndLineProperty = DependencyProperty.RegisterAttached("EndLine", typeof(int), typeof(ActivityMarkupSerializer), new
PropertyMetadata
(minusOne, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
31
public static readonly DependencyProperty EndColumnProperty = DependencyProperty.RegisterAttached("EndColumn", typeof(int), typeof(ActivityMarkupSerializer), new
PropertyMetadata
(minusOne, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (4)
34
public static readonly DependencyProperty XClassProperty = DependencyProperty.RegisterAttached("XClass", typeof(string), typeof(WorkflowMarkupSerializer), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
35
public static readonly DependencyProperty XCodeProperty = DependencyProperty.RegisterAttached("XCode", typeof(CodeTypeMemberCollection), typeof(WorkflowMarkupSerializer), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
37
public static readonly DependencyProperty EventsProperty = DependencyProperty.RegisterAttached("Events", typeof(Hashtable), typeof(WorkflowMarkupSerializer), new
PropertyMetadata
(null, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
38
public static readonly DependencyProperty ClrNamespacesProperty = DependencyProperty.RegisterAttached("ClrNamespaces", typeof(List<String>), typeof(WorkflowMarkupSerializer), new
PropertyMetadata
(null, new Attribute[] { new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
System.Workflow.Runtime (15)
CorrelationToken.cs (4)
26
internal static readonly DependencyProperty NameProperty = DependencyProperty.Register("Name", typeof(string), typeof(CorrelationToken), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new BrowsableAttribute(false) }));
27
internal static readonly DependencyProperty OwnerActivityNameProperty = DependencyProperty.Register("OwnerActivityName", typeof(string), typeof(CorrelationToken), new
PropertyMetadata
(DependencyPropertyOptions.Metadata, new Attribute[] { new TypeConverterAttribute(typeof(PropertyValueProviderTypeConverter)) }));
30
internal static readonly DependencyProperty PropertiesProperty = DependencyProperty.Register("Properties", typeof(ICollection<CorrelationProperty>), typeof(CorrelationToken), new
PropertyMetadata
(new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
32
internal static readonly DependencyProperty InitializedProperty = DependencyProperty.Register("Initialized", typeof(bool), typeof(CorrelationToken), new
PropertyMetadata
(false, new Attribute[] { new BrowsableAttribute(false), new DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden) }));
WorkflowDefinitionDispenser.cs (1)
589
internal static readonly DependencyProperty WorkflowDefinitionLockObjectProperty = DependencyProperty.RegisterAttached("WorkflowDefinitionLockObject", typeof(object), typeof(WorkflowDefinitionLock), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
WorkflowExecutor.cs (9)
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));
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));
40
private static DependencyProperty ContextIdProperty = DependencyProperty.RegisterAttached("ContextId", typeof(int), typeof(WorkflowExecutor), new
PropertyMetadata
(new Int32()));
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));
WorkflowQueuingService.cs (1)
35
public readonly static DependencyProperty PendingMessagesProperty = DependencyProperty.RegisterAttached("PendingMessages", typeof(Queue), typeof(WorkflowQueuingService), new
PropertyMetadata
(DependencyPropertyOptions.NonSerialized));
System.WorkflowServices (39)
System\Workflow\Activities\ChannelToken.cs (3)
33
new
PropertyMetadata
(null));
40
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata,
48
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata,
System\Workflow\Activities\ContextToken.cs (2)
34
new
PropertyMetadata
(null,
43
new
PropertyMetadata
(null,
System\Workflow\Activities\DynamicContractTypeBuilder.cs (1)
27
new
PropertyMetadata
(null, DependencyPropertyOptions.NonSerialized));
System\Workflow\Activities\OperationInfo.cs (4)
25
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
31
new
PropertyMetadata
(false, DependencyPropertyOptions.Metadata));
37
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly,
47
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
System\Workflow\Activities\OperationInfoBase.cs (4)
31
new
PropertyMetadata
(null, DependencyPropertyOptions.NonSerialized));
37
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
43
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
49
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
System\Workflow\Activities\OperationParameterInfo.cs (4)
28
new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
34
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
40
new
PropertyMetadata
(typeof(void), DependencyPropertyOptions.Metadata));
46
new
PropertyMetadata
(-1, DependencyPropertyOptions.Metadata));
System\Workflow\Activities\ReceiveActivity.cs (7)
48
new
PropertyMetadata
(null));
60
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata,
69
new
PropertyMetadata
(false, DependencyPropertyOptions.Metadata));
76
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
83
new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
90
new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
106
new
PropertyMetadata
(QueueInitializationMode.Standalone));
System\Workflow\Activities\SendActivity.cs (4)
51
new
PropertyMetadata
(null));
60
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
67
new
PropertyMetadata
(DependencyPropertyOptions.Metadata | DependencyPropertyOptions.ReadOnly));
74
new
PropertyMetadata
(DependencyPropertyOptions.Metadata));
System\Workflow\Activities\TypedOperationInfo.cs (1)
26
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
System\Workflow\Activities\WorkflowServiceAttributes.cs (9)
25
new
PropertyMetadata
(AddressFilterMode.Exact, DependencyPropertyOptions.Metadata));
30
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
35
new
PropertyMetadata
(false, DependencyPropertyOptions.Metadata));
40
new
PropertyMetadata
(false, DependencyPropertyOptions.Metadata));
45
new
PropertyMetadata
(65536, DependencyPropertyOptions.Metadata));
50
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
55
new
PropertyMetadata
(null, DependencyPropertyOptions.Metadata));
60
new
PropertyMetadata
(true, DependencyPropertyOptions.Metadata));
65
new
PropertyMetadata
(true, DependencyPropertyOptions.Metadata));
13 references to PropertyMetadata
System.Workflow.ComponentModel (13)
AuthoringOM\DependencyObject.cs (5)
163
PropertyMetadata
metadata = dependencyProperty.DefaultMetadata;
170
private object GetValueCommon(DependencyProperty dependencyProperty,
PropertyMetadata
metadata)
232
PropertyMetadata
metadata = dependencyProperty.DefaultMetadata;
242
PropertyMetadata
metadata = dependencyProperty.DefaultMetadata;
246
internal void SetValueCommon(DependencyProperty dependencyProperty, object value,
PropertyMetadata
metadata, bool shouldCallSetValueOverrideIfExists)
AuthoringOM\DependencyProperty.cs (8)
55
private
PropertyMetadata
defaultMetadata = null;
65
public static DependencyProperty Register(string name, System.Type propertyType, System.Type ownerType,
PropertyMetadata
defaultMetadata)
75
public static DependencyProperty RegisterAttached(string name, System.Type propertyType, System.Type ownerType,
PropertyMetadata
defaultMetadata)
104
public static DependencyProperty RegisterAttached(string name, System.Type propertyType, System.Type ownerType,
PropertyMetadata
defaultMetadata, System.Type validatorType)
164
private static DependencyProperty ValidateAndRegister(string name, System.Type propertyType, System.Type ownerType,
PropertyMetadata
defaultMetadata, System.Type validatorType, bool isRegistered)
198
PropertyMetadata
metadata = null;
263
private DependencyProperty(string name, System.Type propertyType, System.Type ownerType,
PropertyMetadata
defaultMetadata, System.Type validatorType, bool isRegistered)
314
public
PropertyMetadata
DefaultMetadata