1 instantiation of DependencyProperty
System.Workflow.ComponentModel (1)
AuthoringOM\DependencyProperty.cs (1)
214
DependencyProperty dependencyProperty = new
DependencyProperty
(name, propertyType, ownerType, metadata, validatorType, isRegistered);
734 references to DependencyProperty
System.Workflow.Activities (157)
Code.cs (2)
40
public static readonly
DependencyProperty
ExecuteCodeEvent =
DependencyProperty
.Register("ExecuteCode", typeof(EventHandler), typeof(CodeActivity));
CodeExpressionRuleDeclaration.cs (2)
23
public static readonly
DependencyProperty
ConditionEvent =
DependencyProperty
.Register("Condition", typeof(EventHandler<ConditionalEventArgs>), typeof(CodeCondition));
Common\BasePropertyDescriptor.cs (1)
663
object key =
DependencyProperty
.FromName(this.RealPropertyDescriptor.Name, this.RealPropertyDescriptor.ComponentType);
Common\Walker.cs (2)
206
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(prop.Name, obj.GetType());
ConditionalBranch.cs (2)
40
public static readonly
DependencyProperty
ConditionProperty =
DependencyProperty
.Register("Condition", typeof(ActivityCondition), typeof(IfElseBranchActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata));
ConstrainedGroup.cs (6)
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));
190
static
DependencyProperty
CAGStateProperty =
DependencyProperty
.Register("CAGState", typeof(ConditionedActivityGroupStateInfo), typeof(ConditionedActivityGroup));
Delay.cs (10)
32
public static readonly
DependencyProperty
InitializeTimeoutDurationEvent =
DependencyProperty
.Register("InitializeTimeoutDuration", typeof(EventHandler), typeof(DelayActivity));
33
public static readonly
DependencyProperty
TimeoutDurationProperty =
DependencyProperty
.Register("TimeoutDuration", typeof(TimeSpan), typeof(DelayActivity), new PropertyMetadata(new TimeSpan(0, 0, 0)));
36
private static readonly
DependencyProperty
QueueNameProperty =
DependencyProperty
.Register("QueueName", typeof(IComparable), typeof(DelayActivity));
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 (4)
40
static
DependencyProperty
ActivityStateProperty =
DependencyProperty
.Register("ActivityState", typeof(List<EventHandlerEventActivitySubscriber>), typeof(EventHandlersActivity));
41
static
DependencyProperty
IsScopeCompletedProperty =
DependencyProperty
.Register("IsScopeCompleted", typeof(bool), typeof(EventHandlersActivity), new PropertyMetadata(false));
EventSinkActivity.cs (16)
30
public static readonly
DependencyProperty
CorrelationTokenProperty =
DependencyProperty
.Register("CorrelationToken", typeof(CorrelationToken), typeof(HandleExternalEventActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata));
31
public static readonly
DependencyProperty
RolesProperty =
DependencyProperty
.Register("Roles", typeof(WorkflowRoleCollection), typeof(HandleExternalEventActivity));
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));
34
private static
DependencyProperty
QueueNameProperty =
DependencyProperty
.Register("QueueName", typeof(IComparable), typeof(HandleExternalEventActivity));
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) }));
41
public static readonly
DependencyProperty
InvokedEvent =
DependencyProperty
.Register("Invoked", typeof(EventHandler<ExternalDataEventArgs>), typeof(HandleExternalEventActivity));
Executors\InboundActivityHelper.cs (3)
107
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName("Roles", activity.GetType().BaseType);
109
dependencyProperty =
DependencyProperty
.FromName("Roles", activity.GetType());
InvokeMethodActivity.cs (10)
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) }));
38
public static readonly
DependencyProperty
MethodInvokingEvent =
DependencyProperty
.Register("MethodInvoking", typeof(EventHandler), typeof(CallExternalMethodActivity));
InvokeSchedule.cs (8)
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) }));
41
public static readonly
DependencyProperty
InvokingEvent =
DependencyProperty
.Register("Invoking", typeof(EventHandler), typeof(InvokeWorkflowActivity));
43
public static readonly
DependencyProperty
InstanceIdProperty =
DependencyProperty
.Register("InstanceId", typeof(Guid), typeof(InvokeWorkflowActivity), new PropertyMetadata(Guid.Empty));
InvokeWebService.cs (16)
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) }));
66
public static readonly
DependencyProperty
InvokingEvent =
DependencyProperty
.Register("Invoking", typeof(EventHandler<InvokeWebServiceEventArgs>), typeof(InvokeWebServiceActivity));
67
public static readonly
DependencyProperty
InvokedEvent =
DependencyProperty
.Register("Invoked", typeof(EventHandler<InvokeWebServiceEventArgs>), typeof(InvokeWebServiceActivity));
69
static
DependencyProperty
SessionCookieContainerProperty =
DependencyProperty
.Register("SessionCookieContainer", typeof(System.Net.CookieContainer), typeof(InvokeWebServiceActivity));
70
static
DependencyProperty
SessionCookieMapProperty =
DependencyProperty
.RegisterAttached("SessionCookieMap", typeof(Dictionary<String, System.Net.CookieContainer>), typeof(InvokeWebServiceActivity));
Listen.cs (4)
191
static
DependencyProperty
IsListenTrigerredProperty =
DependencyProperty
.Register("IsListenTrigerred", typeof(bool), typeof(ListenActivity), new PropertyMetadata(false));
192
static
DependencyProperty
ActivityStateProperty =
DependencyProperty
.Register("ActivityState", typeof(List<ListenEventActivitySubscriber>), typeof(ListenActivity));
LocalService\CorrelationService.cs (3)
168
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName("CorrelationToken", activity.GetType());
170
dependencyProperty =
DependencyProperty
.FromName("CorrelationToken", activity.GetType().BaseType);
Parallel.cs (2)
177
static
DependencyProperty
IsExecutingProperty =
DependencyProperty
.Register("IsExecuting", typeof(bool), typeof(ParallelActivity), new PropertyMetadata(false));
Policy.cs (2)
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 (2)
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) }));
Schedule.cs (4)
33
public static readonly
DependencyProperty
InitializedEvent =
DependencyProperty
.Register("Initialized", typeof(EventHandler), typeof(SequentialWorkflowActivity));
34
public static readonly
DependencyProperty
CompletedEvent =
DependencyProperty
.Register("Completed", typeof(EventHandler), typeof(SequentialWorkflowActivity));
Sequence.cs (4)
40
private static readonly
DependencyProperty
SequenceFaultingProperty =
DependencyProperty
.Register("SequenceFaulting", typeof(bool), typeof(SequenceActivity));
41
private static readonly
DependencyProperty
ActiveChildQualifiedNameProperty =
DependencyProperty
.Register("ActiveChildQualifiedName", typeof(string), typeof(SequenceActivity));
SetState.cs (2)
34
public static readonly
DependencyProperty
TargetStateNameProperty =
DependencyProperty
.Register(TargetStateNamePropertyName, typeof(string), typeof(SetStateActivity), new PropertyMetadata("", DependencyPropertyOptions.Metadata, new ValidationOptionAttribute(ValidationOption.Optional)));
State.cs (2)
39
internal static
DependencyProperty
StateMachineExecutionStateProperty =
DependencyProperty
.Register(StateMachineExecutionState.StateMachineExecutionStateKey, typeof(StateMachineExecutionState), typeof(StateActivity), new PropertyMetadata());
StateMachineWorkflow.cs (4)
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 (16)
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));
42
public static readonly
DependencyProperty
InitializedEvent =
DependencyProperty
.Register("Initialized", typeof(EventHandler), typeof(ReplicatorActivity));
43
public static readonly
DependencyProperty
CompletedEvent =
DependencyProperty
.Register("Completed", typeof(EventHandler), typeof(ReplicatorActivity));
44
public static readonly
DependencyProperty
ChildInitializedEvent =
DependencyProperty
.Register("ChildInitialized", typeof(EventHandler<ReplicatorChildEventArgs>), typeof(ReplicatorActivity));
45
public static readonly
DependencyProperty
ChildCompletedEvent =
DependencyProperty
.Register("ChildCompleted", typeof(EventHandler<ReplicatorChildEventArgs>), typeof(ReplicatorActivity));
46
public static readonly
DependencyProperty
InitialChildDataProperty =
DependencyProperty
.Register("InitialChildData", typeof(IList), typeof(ReplicatorActivity));
436
static
DependencyProperty
ActivityStateProperty =
DependencyProperty
.Register("ActivityState", typeof(ReplicatorStateInfo), typeof(ReplicatorActivity));
WebServiceFault.cs (6)
32
public static readonly
DependencyProperty
InputActivityNameProperty =
DependencyProperty
.Register("InputActivityName", typeof(string), typeof(WebServiceFaultActivity), new PropertyMetadata("", DependencyPropertyOptions.Metadata));
33
public static readonly
DependencyProperty
FaultProperty =
DependencyProperty
.Register("Fault", typeof(Exception), typeof(WebServiceFaultActivity));
34
public static readonly
DependencyProperty
SendingFaultEvent =
DependencyProperty
.Register("SendingFault", typeof(EventHandler), typeof(WebServiceFaultActivity));
WebServiceReceive.cs (16)
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));
38
public static readonly
DependencyProperty
RolesProperty =
DependencyProperty
.Register("Roles", typeof(WorkflowRoleCollection), typeof(WebServiceInputActivity));
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));
43
private static readonly
DependencyProperty
QueueNameProperty =
DependencyProperty
.Register("QueueName", typeof(IComparable), typeof(WebServiceInputActivity));
46
public static readonly
DependencyProperty
InputReceivedEvent =
DependencyProperty
.Register("InputReceived", typeof(EventHandler), typeof(WebServiceInputActivity));
WebServiceResponse.cs (6)
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) }));
36
public static readonly
DependencyProperty
SendingOutputEvent =
DependencyProperty
.Register("SendingOutput", typeof(EventHandler), typeof(WebServiceOutputActivity));
While.cs (2)
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 (380)
AuthoringOM\Activity.cs (131)
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));
149
internal static readonly
DependencyProperty
WorkflowXamlMarkupProperty =
DependencyProperty
.Register("WorkflowXamlMarkup", typeof(string), typeof(Activity));
150
internal static readonly
DependencyProperty
WorkflowRulesMarkupProperty =
DependencyProperty
.Register("WorkflowRulesMarkup", typeof(string), typeof(Activity));
152
internal static readonly
DependencyProperty
SynchronizationHandlesProperty =
DependencyProperty
.Register("SynchronizationHandles", typeof(ICollection<String>), typeof(Activity), new PropertyMetadata(DependencyPropertyOptions.Metadata));
154
internal static readonly
DependencyProperty
ActivityExecutionContextInfoProperty =
DependencyProperty
.RegisterAttached("ActivityExecutionContextInfo", typeof(ActivityExecutionContextInfo), typeof(Activity));
155
public static readonly
DependencyProperty
ActivityContextGuidProperty =
DependencyProperty
.RegisterAttached("ActivityContextGuid", typeof(Guid), typeof(Activity), new PropertyMetadata(Guid.Empty));
156
internal static readonly
DependencyProperty
CompletedExecutionContextsProperty =
DependencyProperty
.RegisterAttached("CompletedExecutionContexts", typeof(IList), typeof(Activity));
157
internal static readonly
DependencyProperty
ActiveExecutionContextsProperty =
DependencyProperty
.RegisterAttached("ActiveExecutionContexts", typeof(IList), typeof(Activity));
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));
171
private static readonly
DependencyProperty
NestedActivitiesProperty =
DependencyProperty
.RegisterAttached("NestedActivities", typeof(IList<Activity>), typeof(Activity));
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));
210
DependencyProperty
.RegisterAsKnown(ActivityExecutionContextInfoProperty, (byte)1,
DependencyProperty
.PropertyValidity.Reexecute);
211
DependencyProperty
.RegisterAsKnown(CompletedExecutionContextsProperty, (byte)2,
DependencyProperty
.PropertyValidity.Reexecute);
212
DependencyProperty
.RegisterAsKnown(ActiveExecutionContextsProperty, (byte)3,
DependencyProperty
.PropertyValidity.Uninitialize);
213
DependencyProperty
.RegisterAsKnown(CompletedOrderIdProperty, (byte)4,
DependencyProperty
.PropertyValidity.Uninitialize);
214
DependencyProperty
.RegisterAsKnown(ExecutionStatusProperty, (byte)5,
DependencyProperty
.PropertyValidity.Reexecute);
215
DependencyProperty
.RegisterAsKnown(ExecutionResultProperty, (byte)6,
DependencyProperty
.PropertyValidity.Reexecute);
216
DependencyProperty
.RegisterAsKnown(WasExecutingProperty, (byte)7,
DependencyProperty
.PropertyValidity.Uninitialize);
217
DependencyProperty
.RegisterAsKnown(LockCountOnStatusChangeProperty, (byte)8,
DependencyProperty
.PropertyValidity.Uninitialize);
218
DependencyProperty
.RegisterAsKnown(HasPrimaryClosedProperty, (byte)9,
DependencyProperty
.PropertyValidity.Uninitialize);
219
DependencyProperty
.RegisterAsKnown(NestedActivitiesProperty, (byte)10,
DependencyProperty
.PropertyValidity.Uninitialize);
220
DependencyProperty
.RegisterAsKnown(ActivityContextGuidProperty, (byte)11,
DependencyProperty
.PropertyValidity.Reexecute);
221
DependencyProperty
.RegisterAsKnown(WorkflowXamlMarkupProperty, (byte)12,
DependencyProperty
.PropertyValidity.Uninitialize);
222
DependencyProperty
.RegisterAsKnown(WorkflowRulesMarkupProperty, (byte)13,
DependencyProperty
.PropertyValidity.Uninitialize);
225
DependencyProperty
.RegisterAsKnown(ActivityExecutionContext.CurrentExceptionProperty, (byte)23,
DependencyProperty
.PropertyValidity.Reexecute);
226
DependencyProperty
.RegisterAsKnown(ActivityExecutionContext.GrantedLocksProperty, (byte)24,
DependencyProperty
.PropertyValidity.Uninitialize);
227
DependencyProperty
.RegisterAsKnown(ActivityExecutionContext.LockAcquiredCallbackProperty, (byte)25,
DependencyProperty
.PropertyValidity.Uninitialize);
231
DependencyProperty
.RegisterAsKnown(ExecutingEvent, (byte)31,
DependencyProperty
.PropertyValidity.Uninitialize);
232
DependencyProperty
.RegisterAsKnown(CancelingEvent, (byte)32,
DependencyProperty
.PropertyValidity.Uninitialize);
233
DependencyProperty
.RegisterAsKnown(ClosedEvent, (byte)33,
DependencyProperty
.PropertyValidity.Uninitialize);
234
DependencyProperty
.RegisterAsKnown(CompensatingEvent, (byte)34,
DependencyProperty
.PropertyValidity.Uninitialize);
235
DependencyProperty
.RegisterAsKnown(StatusChangedEvent, (byte)35,
DependencyProperty
.PropertyValidity.Uninitialize);
236
DependencyProperty
.RegisterAsKnown(StatusChangedLockedEvent, (byte)36,
DependencyProperty
.PropertyValidity.Uninitialize);
237
DependencyProperty
.RegisterAsKnown(LockCountOnStatusChangeChangedEvent, (byte)37,
DependencyProperty
.PropertyValidity.Uninitialize);
238
DependencyProperty
.RegisterAsKnown(FaultingEvent, (byte)38,
DependencyProperty
.PropertyValidity.Uninitialize);
241
DependencyProperty
.RegisterAsKnown(FaultAndCancellationHandlingFilter.FaultProcessedProperty, (byte)41,
DependencyProperty
.PropertyValidity.Uninitialize);
242
DependencyProperty
.RegisterAsKnown(CompensationHandlingFilter.CompensateProcessedProperty, (byte)43,
DependencyProperty
.PropertyValidity.Uninitialize);
243
DependencyProperty
.RegisterAsKnown(CompensationHandlingFilter.LastCompensatedOrderIdProperty, (byte)44,
DependencyProperty
.PropertyValidity.Uninitialize);
329
protected internal void RaiseGenericEvent<T>(
DependencyProperty
dependencyEvent, object sender, T e) where T : EventArgs
358
protected internal void RaiseEvent(
DependencyProperty
dependencyEvent, object sender, EventArgs e)
557
public static readonly
DependencyProperty
StatusChangedEvent =
DependencyProperty
.Register("StatusChanged", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
572
internal static readonly
DependencyProperty
LockCountOnStatusChangeChangedEvent =
DependencyProperty
.Register("LockCountOnStatusChangeChanged", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
573
internal static readonly
DependencyProperty
StatusChangedLockedEvent =
DependencyProperty
.Register("StatusChangedLocked", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
634
public static readonly
DependencyProperty
CancelingEvent =
DependencyProperty
.Register("Canceling", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
650
public static readonly
DependencyProperty
FaultingEvent =
DependencyProperty
.Register("Faulting", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
667
public static readonly
DependencyProperty
ClosedEvent =
DependencyProperty
.Register("Closed", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
683
public static readonly
DependencyProperty
ExecutingEvent =
DependencyProperty
.Register("Executing", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
699
public static readonly
DependencyProperty
CompensatingEvent =
DependencyProperty
.Register("Compensating", typeof(EventHandler<ActivityExecutionStatusChangedEventArgs>), typeof(Activity));
714
private void AddStatusChangeHandler(
DependencyProperty
dependencyProp, EventHandler<ActivityExecutionStatusChangedEventArgs> delegateValue)
728
private void RemoveStatusChangeHandler(
DependencyProperty
dependencyProp, EventHandler<ActivityExecutionStatusChangedEventArgs> delegateValue)
741
private IList GetStatusChangeHandlers(
DependencyProperty
dependencyProp)
749
public void RegisterForStatusChange(
DependencyProperty
dependencyProp, IActivityEventListener<ActivityExecutionStatusChangedEventArgs> activityStatusChangeListener)
778
public void UnregisterForStatusChange(
DependencyProperty
dependencyProp, IActivityEventListener<ActivityExecutionStatusChangedEventArgs> activityStatusChangeListener)
947
DependencyProperty
[] propertyClone = new
DependencyProperty
[this.DependencyPropertyValues.Keys.Count];
950
foreach (
DependencyProperty
property in propertyClone)
952
if (property.IsKnown && (property.Validity ==
DependencyProperty
.PropertyValidity.Uninitialize || (forReexecute && property.Validity ==
DependencyProperty
.PropertyValidity.Reexecute)))
1487
private void FireStatusChangedEvents(
DependencyProperty
dependencyProperty, bool transacted)
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 (8)
44
public static readonly
DependencyProperty
CurrentExceptionProperty =
DependencyProperty
.RegisterAttached("CurrentException", typeof(Exception), typeof(ActivityExecutionContext), new PropertyMetadata(null, DependencyPropertyOptions.Default, null, EnforceExceptionSemantics, true));
45
internal static readonly
DependencyProperty
GrantedLocksProperty =
DependencyProperty
.RegisterAttached("GrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext));
46
internal static readonly
DependencyProperty
CachedGrantedLocksProperty =
DependencyProperty
.RegisterAttached("CachedGrantedLocks", typeof(Dictionary<string, GrantedLock>), typeof(ActivityExecutionContext), new PropertyMetadata(DependencyPropertyOptions.NonSerialized));
47
internal static readonly
DependencyProperty
LockAcquiredCallbackProperty =
DependencyProperty
.RegisterAttached("LockAcquiredCallback", typeof(ActivityExecutorDelegateInfo<EventArgs>), typeof(ActivityExecutionContext));
AuthoringOM\ActivityInterfaces.cs (1)
113
T[] GetInvocationList<T>(
DependencyProperty
dependencyEvent);
AuthoringOM\Behaviors\CompensatableTransactionScopeActivity.cs (2)
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 (2)
31
public static readonly
DependencyProperty
TargetActivityNameProperty =
DependencyProperty
.Register("TargetActivityName", typeof(string), typeof(CompensateActivity), new PropertyMetadata("", DependencyPropertyOptions.Metadata));
AuthoringOM\Behaviors\ExceptionHandler.cs (4)
29
public static readonly
DependencyProperty
FaultTypeProperty =
DependencyProperty
.Register("FaultType", typeof(Type), typeof(FaultHandlerActivity), new PropertyMetadata(DependencyPropertyOptions.Metadata));
30
internal static readonly
DependencyProperty
FaultProperty =
DependencyProperty
.Register("Fault", typeof(Exception), typeof(FaultHandlerActivity));
AuthoringOM\Behaviors\TransactionScope.cs (2)
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 (4)
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\Bind.cs (13)
112
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(evt.Name, dependencyObject.GetType());
661
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(this.Path, rootActivity.GetType());
984
else if (validationContext.Property is
DependencyProperty
)
987
DependencyProperty
dependencyProperty = validationContext.Property as
DependencyProperty
;
1012
else if (validationContext.Property is
DependencyProperty
)
1016
accessType = basetypeProvider.GetAccessType(serviceProvider, ((
DependencyProperty
)validationContext.Property).Name);
1071
DependencyProperty
eventDependencyProperty =
DependencyProperty
.FromName(evt.Name, value.GetType());
1090
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(eventArgs.MemberInfo.Name, value.GetType());
AuthoringOM\Compiler\Validation\BindValidator.cs (2)
886
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(memberInfo.Name, memberInfo.DeclaringType);
AuthoringOM\Compiler\Validation\DependencyObjectValidator.cs (6)
29
foreach (
DependencyProperty
prop in
DependencyProperty
.FromType(dependencyObject.GetType()))
39
foreach (
DependencyProperty
prop in dependencyObject.MetaDependencyProperties)
48
foreach (
DependencyProperty
prop in allProperties)
59
private ValidationErrorCollection ValidateDependencyProperty(DependencyObject dependencyObject,
DependencyProperty
dependencyProperty, ValidationManager manager)
176
private ValidationErrorCollection ValidateEvent(Activity activity,
DependencyProperty
dependencyProperty, object propValue, ValidationManager manager)
AuthoringOM\Compiler\Validation\PropertyValidationContext.cs (3)
26
public PropertyValidationContext(object propertyOwner,
DependencyProperty
dependencyProperty)
39
if (this.propertyInfo is
DependencyProperty
)
40
return ((
DependencyProperty
)this.propertyInfo).Name;
AuthoringOM\Compiler\Validation\Validator.cs (2)
54
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(args.CurrentProperty.Name, args.CurrentProperty.DeclaringType);
AuthoringOM\DependencyObject.cs (40)
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) }));
30
private IDictionary<
DependencyProperty
, object> metaProperties = new Dictionary<
DependencyProperty
, object>();
109
public void SetBinding(
DependencyProperty
dependencyProperty, ActivityBind bind)
145
public ActivityBind GetBinding(
DependencyProperty
dependencyProperty)
153
public object GetValue(
DependencyProperty
dependencyProperty)
170
private object GetValueCommon(
DependencyProperty
dependencyProperty, PropertyMetadata metadata)
195
public object GetValueBase(
DependencyProperty
dependencyProperty)
203
protected internal void SetReadOnlyPropertyValue(
DependencyProperty
dependencyProperty, object value)
214
IDictionary<
DependencyProperty
, object> properties = null;
227
public void SetValueBase(
DependencyProperty
dependencyProperty, object value)
237
public void SetValue(
DependencyProperty
dependencyProperty, object value)
246
internal void SetValueCommon(
DependencyProperty
dependencyProperty, object value, PropertyMetadata metadata, bool shouldCallSetValueOverrideIfExists)
275
IDictionary<
DependencyProperty
, object> properties = null;
302
public bool RemoveProperty(
DependencyProperty
dependencyProperty)
323
public void AddHandler(
DependencyProperty
dependencyEvent, object value)
353
IDictionary<
DependencyProperty
, object> properties = this.DependencyPropertyValues;
371
public void RemoveHandler(
DependencyProperty
dependencyEvent, object value)
387
IDictionary<
DependencyProperty
, object> properties = this.DependencyPropertyValues;
398
internal object GetHandler(
DependencyProperty
dependencyEvent)
406
IDictionary<
DependencyProperty
, object> properties = this.DependencyPropertyValues;
429
public bool IsBindingSet(
DependencyProperty
dependencyProperty)
462
foreach (
DependencyProperty
dependencyProperty in this.MetaDependencyProperties)
493
foreach (
DependencyProperty
dependencyProperty in this.MetaDependencyProperties)
532
foreach (KeyValuePair<
DependencyProperty
, object> keyValuePair in this.DependencyPropertyValues)
553
T[] IDependencyObjectAccessor.GetInvocationList<T>(
DependencyProperty
dependencyEvent)
557
protected T[] GetInvocationList<T>(
DependencyProperty
dependencyEvent)
566
IDictionary<
DependencyProperty
, object> properties = null;
600
internal IList<
DependencyProperty
> MetaDependencyProperties
604
return new List<
DependencyProperty
>(this.metaProperties.Keys).AsReadOnly();
609
private IDictionary<
DependencyProperty
, object> dependencyPropertyValues = null;
610
internal IDictionary<
DependencyProperty
, object> DependencyPropertyValues
615
this.dependencyPropertyValues = new Dictionary<
DependencyProperty
, object>();
AuthoringOM\DependencyProperty.cs (28)
26
private static IDictionary<int,
DependencyProperty
> dependencyProperties = new Dictionary<int,
DependencyProperty
>();
37
internal
DependencyProperty
dependencyProperty;
41
internal KnownDependencyProperty(
DependencyProperty
dependencyProperty, PropertyValidity propertyValidity)
60
public static
DependencyProperty
Register(string name, System.Type propertyType, System.Type ownerType)
65
public static
DependencyProperty
Register(string name, System.Type propertyType, System.Type ownerType, PropertyMetadata defaultMetadata)
70
public static
DependencyProperty
RegisterAttached(string name, System.Type propertyType, System.Type ownerType)
75
public static
DependencyProperty
RegisterAttached(string name, System.Type propertyType, System.Type ownerType, PropertyMetadata defaultMetadata)
80
internal static void RegisterAsKnown(
DependencyProperty
dependencyProperty, byte byteVal, PropertyValidity propertyValidity)
93
internal static
DependencyProperty
FromKnown(Byte byteVal)
104
public static
DependencyProperty
RegisterAttached(string name, System.Type propertyType, System.Type ownerType, PropertyMetadata defaultMetadata, System.Type validatorType)
114
public static
DependencyProperty
FromName(string propertyName, Type ownerType)
122
DependencyProperty
dp = null;
130
lock (((ICollection)
DependencyProperty
.dependencyProperties).SyncRoot)
132
if (
DependencyProperty
.dependencyProperties.ContainsKey(hashCode))
133
dp =
DependencyProperty
.dependencyProperties[hashCode];
142
public static IList<
DependencyProperty
> FromType(Type ownerType)
150
List<
DependencyProperty
> filteredProperties = new List<
DependencyProperty
>();
151
lock (((ICollection)
DependencyProperty
.dependencyProperties).SyncRoot)
153
foreach (
DependencyProperty
dependencyProperty in
DependencyProperty
.dependencyProperties.Values)
164
private static
DependencyProperty
ValidateAndRegister(string name, System.Type propertyType, System.Type ownerType, PropertyMetadata defaultMetadata, System.Type validatorType, bool isRegistered)
214
DependencyProperty
dependencyProperty = new DependencyProperty(name, propertyType, ownerType, metadata, validatorType, isRegistered);
215
lock (((ICollection)
DependencyProperty
.dependencyProperties).SyncRoot)
217
if (
DependencyProperty
.dependencyProperties.ContainsKey(dependencyProperty.GetHashCode()))
220
DependencyProperty
.dependencyProperties.Add(dependencyProperty.GetHashCode(), dependencyProperty);
387
return
DependencyProperty
.FromName(this.name, this.type);
AuthoringOM\Design\ComponentSerializationService.cs (4)
637
DependencyProperty
dependencyProperty = null;
647
dependencyProperty =
DependencyProperty
.FromName(propertyName, propertyType);
683
DependencyProperty
dependencyProperty = null;
690
dependencyProperty =
DependencyProperty
.FromName(propertyName, propertyType);
AuthoringOM\Design\CustomActivityDesigner.cs (3)
445
if ((fieldInfo != null && fieldInfo.FieldType == typeof(
DependencyProperty
)))
902
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(propertyDescriptor.Name, propertyDescriptor.ComponentType);
AuthoringOM\Design\Dialogs\ActivityBindForm.cs (2)
275
PropertyValidationContext propertyValidationContext = new PropertyValidationContext(this.context.Instance,
DependencyProperty
.FromName(this.context.PropertyDescriptor.Name, this.context.Instance.GetType()));
656
if (TypeProvider.IsAssignable(typeof(
DependencyProperty
), fieldType))
AuthoringOM\Design\ExtenderHelpers.cs (3)
38
Dictionary<string,
DependencyProperty
> dependencyProperyies = new Dictionary<string,
DependencyProperty
>();
39
foreach (
DependencyProperty
property in activity.MetaDependencyProperties)
AuthoringOM\Design\PropertyDescriptors.cs (8)
327
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(Name, ComponentType);
349
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(Name, ComponentType);
431
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(context.PropertyDescriptor.Name, context.PropertyDescriptor.ComponentType);
689
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(propertyDescriptor.Name, propertyDescriptor.ComponentType);
AuthoringOM\Design\TypeConverters.cs (2)
27
internal static
DependencyProperty
DeclarativeConditionDynamicProp = null;
36
DeclarativeConditionDynamicProp = (
DependencyProperty
)RuleConditionReferenceType.GetField("RuleDefinitionsProperty").GetValue(null);
AuthoringOM\Design\WorkflowInlining.cs (2)
392
foreach (
DependencyProperty
dependencyProperty in
DependencyProperty
.FromType(dependencyObjectType))
AuthoringOM\Fault.cs (4)
29
public static readonly
DependencyProperty
FaultProperty =
DependencyProperty
.Register("Fault", typeof(Exception), typeof(ThrowActivity));
31
public static readonly
DependencyProperty
FaultTypeProperty =
DependencyProperty
.Register("FaultType", typeof(Type), typeof(ThrowActivity));
AuthoringOM\Filters\CompensationHandlingFilter.cs (4)
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 (2)
12
public static
DependencyProperty
FaultProcessedProperty =
DependencyProperty
.RegisterAttached("FaultProcessed", typeof(bool), typeof(FaultAndCancellationHandlingFilter), new PropertyMetadata(false));
AuthoringOM\ParameterBinding.cs (4)
19
public static readonly
DependencyProperty
ParameterNameProperty =
DependencyProperty
.Register("ParameterName", typeof(string), typeof(WorkflowParameterBinding), new PropertyMetadata(DependencyPropertyOptions.Metadata));
20
public static readonly
DependencyProperty
ValueProperty =
DependencyProperty
.Register("Value", typeof(object), typeof(WorkflowParameterBinding));
AuthoringOM\PropertyMetadata.cs (2)
203
protected virtual void OnApply(
DependencyProperty
dependencyProperty, Type targetType)
223
internal void Seal(
DependencyProperty
dependencyProperty, Type targetType)
AuthoringOM\ScheduleChanges.cs (8)
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));
294
foreach (
DependencyProperty
dependencyProperty in activity.MetaDependencyProperties)
322
foreach (
DependencyProperty
dependencyProperty in activity.MetaDependencyProperties)
AuthoringOM\Sequence.cs (4)
22
private static
DependencyProperty
ActiveChildQualifiedNameProperty =
DependencyProperty
.RegisterAttached("ActiveChildQualifiedName", typeof(String), typeof(SequenceHelper));
23
private static
DependencyProperty
ActiveChildRemovedProperty =
DependencyProperty
.RegisterAttached("ActiveChildRemoved", typeof(bool), typeof(SequenceHelper), new PropertyMetadata(DependencyPropertyOptions.NonSerialized));
AuthoringOM\Serializer\ActivityCodeDomSerializer.cs (2)
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 (8)
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\ActivitySurrogate.cs (3)
48
IDictionary<
DependencyProperty
, object> instanceProperties = (IDictionary<
DependencyProperty
, object>)memberDatas[0];
51
foreach (KeyValuePair<
DependencyProperty
, object> kvp in instanceProperties)
AuthoringOM\Serializer\ActivitySurrogateSelector.cs (1)
65
else if (typeof(IDictionary<
DependencyProperty
, object>).IsAssignableFrom(type))
AuthoringOM\Serializer\DependencyObjectCodeDomSerializer.cs (7)
69
List<
DependencyProperty
> dependencyProperties = new List<
DependencyProperty
>(dependencyObject.MetaDependencyProperties);
70
foreach (
DependencyProperty
dp in dependencyObject.DependencyPropertyValues.Keys)
79
foreach (
DependencyProperty
dependencyProperty in dependencyProperties)
107
param1 = new CodeMethodInvokeExpression(new CodeTypeReferenceExpression(typeof(
DependencyProperty
)), "FromName", new CodePrimitiveExpression(dependencyProperty.Name), new CodeTypeOfExpression(dependencyProperty.OwnerType));
168
DependencyProperty
dependencyProperty = key as
DependencyProperty
;
AuthoringOM\Serializer\DependencyStoreSurrogate.cs (8)
18
IDictionary<
DependencyProperty
, object> store = obj as IDictionary<
DependencyProperty
, object>;
25
foreach (KeyValuePair<
DependencyProperty
, object> kvp in store)
55
private IDictionary<
DependencyProperty
, object> store = null;
60
this.store = new Dictionary<
DependencyProperty
, object>();
70
DependencyProperty
dp = this.keys[index] as
DependencyProperty
;
72
dp =
DependencyProperty
.FromKnown((byte)this.keys[index]);
AuthoringOM\Serializer\WorkflowMarkupSerializer.cs (44)
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) }));
345
DependencyProperty
dependencyProperty = ResolveDependencyProperty(serializationManager, reader, obj, propName);
465
DependencyProperty
dependencyProperty = ResolveDependencyProperty(serializationManager, reader, obj, reader.LocalName);
634
IDictionary<
DependencyProperty
, object> dependencyProperties = null;
723
DependencyProperty
dependencyProperty = key as
DependencyProperty
;
730
foreach (
DependencyProperty
dependencyProperty in dependencyProperties.Keys)
796
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(property.Name, property.ReflectedType);
822
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(propertyName, obj.GetType());
833
else if (propertyObj is
DependencyProperty
)
835
DependencyProperty
dependencyProperty = propertyObj as
DependencyProperty
;
971
else if (propertyObj is
DependencyProperty
)
973
DependencyProperty
dependencyProperty = propertyObj as
DependencyProperty
;
1451
private IDictionary<
DependencyProperty
, object> GetDependencyProperties(WorkflowMarkupSerializationManager serializationManager, object obj)
1463
Dictionary<
DependencyProperty
, object> dependencyProperties = new Dictionary<
DependencyProperty
, object>();
1467
foreach (
DependencyProperty
dependencyProperty in dependencyObject.MetaDependencyProperties)
1522
foreach (
DependencyProperty
dependencyProperty in dependencyObject.DependencyPropertyValues.Keys)
1535
private static bool VerifyAttachedPropertyConditions(
DependencyProperty
dependencyProperty)
1562
private void SetDependencyPropertyValue(WorkflowMarkupSerializationManager serializationManager, object obj,
DependencyProperty
dependencyProperty, object value)
1799
DependencyProperty
dependencyProperty = serializationManager.Context.Current as
DependencyProperty
;
1913
DependencyProperty
dependencyProperty = serializationManager.Context.Current as
DependencyProperty
;
1945
DependencyProperty
dependencyEvent = serializationManager.Context.Current as
DependencyProperty
;
1976
DependencyProperty
dependencyProperty = serializationManager.Context.Current as
DependencyProperty
;
2054
private
DependencyProperty
ResolveDependencyProperty(WorkflowMarkupSerializationManager serializationManager, XmlReader reader, object attachedObj, string fullPropertyName)
2078
DependencyProperty
dependencyProperty = null;
2085
dependencyProperty = fieldInfo.GetValue(attachedObj) as
DependencyProperty
;
2347
DependencyProperty
dependencyProperty = property as
DependencyProperty
;
AuthoringOM\Suspend.cs (2)
30
public static readonly
DependencyProperty
ErrorProperty =
DependencyProperty
.Register("Error", typeof(string), typeof(SuspendActivity));
AuthoringOM\Terminate.cs (2)
26
public static readonly
DependencyProperty
ErrorProperty =
DependencyProperty
.Register("Error", typeof(string), typeof(TerminateActivity));
Shared\BasePropertyDescriptor.cs (1)
662
object key =
DependencyProperty
.FromName(this.RealPropertyDescriptor.Name, this.RealPropertyDescriptor.ComponentType);
Shared\Walker.cs (2)
205
DependencyProperty
dependencyProperty =
DependencyProperty
.FromName(prop.Name, obj.GetType());
System.Workflow.Runtime (101)
CorrelationToken.cs (12)
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) }));
31
internal static readonly
DependencyProperty
SubscriptionsProperty =
DependencyProperty
.Register("Subscriptions", typeof(IList<ActivityExecutorDelegateInfo<CorrelationTokenEventArgs>>), typeof(CorrelationToken));
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) }));
214
public static readonly
DependencyProperty
CorrelationTokenCollectionProperty =
DependencyProperty
.RegisterAttached("CorrelationTokenCollection", typeof(CorrelationTokenCollection), typeof(CorrelationTokenCollection));
DebugEngine\DebugController.cs (2)
1106
DependencyProperty
dependencyEvent =
DependencyProperty
.FromName(eventInfo.Name, activity.GetType());
Scheduler.cs (4)
20
internal static
DependencyProperty
HighPriorityEntriesQueueProperty =
DependencyProperty
.RegisterAttached("HighPriorityEntriesQueue", typeof(Queue<SchedulableItem>), typeof(Scheduler));
21
internal static
DependencyProperty
NormalPriorityEntriesQueueProperty =
DependencyProperty
.RegisterAttached("NormalPriorityEntriesQueue", typeof(Queue<SchedulableItem>), typeof(Scheduler));
System\Activities\Statements\InteropEnvironment.cs (2)
374
System.Workflow.ComponentModel.
DependencyProperty
dependencyProperty = System.Workflow.ComponentModel.
DependencyProperty
.FromName(dependencyPropertyName,
System\Activities\Statements\InteropExecutor.cs (4)
912
internal static
DependencyProperty
SchedulerQueueProperty =
DependencyProperty
.RegisterAttached("SchedulerQueue", typeof(Queue<SchedulableItem>), typeof(Scheduler));
913
internal static
DependencyProperty
AtomicActivityQueueProperty =
DependencyProperty
.RegisterAttached("AtomicActivityQueue", typeof(Queue<SchedulableItem>), typeof(Scheduler));
TimerEventSubscriptionCollection.cs (2)
18
public readonly static
DependencyProperty
TimerCollectionProperty =
DependencyProperty
.RegisterAttached("TimerCollection", typeof(TimerEventSubscriptionCollection), typeof(TimerEventSubscriptionCollection));
WorkflowDefinitionDispenser.cs (5)
40
internal static
DependencyProperty
WorkflowDefinitionHashCodeProperty =
DependencyProperty
.RegisterAttached("WorkflowDefinitionHashCode", typeof(byte[]), typeof(WorkflowDefinitionDispenser));
348
foreach (
DependencyProperty
dependencyProperty in rootActivity.MetaDependencyProperties)
589
internal static readonly
DependencyProperty
WorkflowDefinitionLockObjectProperty =
DependencyProperty
.RegisterAttached("WorkflowDefinitionLockObject", typeof(object), typeof(WorkflowDefinitionLock), new PropertyMetadata(DependencyPropertyOptions.NonSerialized));
WorkflowExecutor.cs (64)
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));
37
internal readonly static
DependencyProperty
SuspendOrTerminateInfoProperty =
DependencyProperty
.RegisterAttached("SuspendOrTerminateInfo", typeof(string), typeof(WorkflowExecutor));
40
private static
DependencyProperty
ContextIdProperty =
DependencyProperty
.RegisterAttached("ContextId", typeof(int), typeof(WorkflowExecutor), new PropertyMetadata(new Int32()));
41
private static
DependencyProperty
TrackingCallingStateProperty =
DependencyProperty
.RegisterAttached("TrackingCallingState", typeof(TrackingCallingState), typeof(WorkflowExecutor));
42
internal static
DependencyProperty
TrackingListenerBrokerProperty =
DependencyProperty
.RegisterAttached("TrackingListenerBroker", typeof(TrackingListenerBroker), typeof(WorkflowExecutor));
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));
94
DependencyProperty
.RegisterAsKnown(ContextIdProperty, (byte)51,
DependencyProperty
.PropertyValidity.Reexecute);
95
DependencyProperty
.RegisterAsKnown(IsSuspensionRequestedProperty, (byte)52,
DependencyProperty
.PropertyValidity.Uninitialize);
96
DependencyProperty
.RegisterAsKnown(TrackingCallingStateProperty, (byte)53,
DependencyProperty
.PropertyValidity.Uninitialize);
97
DependencyProperty
.RegisterAsKnown(TrackingListenerBrokerProperty, (byte)54,
DependencyProperty
.PropertyValidity.Uninitialize);
98
DependencyProperty
.RegisterAsKnown(IsIdleProperty, (byte)56,
DependencyProperty
.PropertyValidity.Uninitialize);
101
DependencyProperty
.RegisterAsKnown(Scheduler.NormalPriorityEntriesQueueProperty, (byte)61,
DependencyProperty
.PropertyValidity.Uninitialize);
102
DependencyProperty
.RegisterAsKnown(Scheduler.HighPriorityEntriesQueueProperty, (byte)62,
DependencyProperty
.PropertyValidity.Uninitialize);
105
DependencyProperty
.RegisterAsKnown(WorkflowQueuingService.LocalPersistedQueueStatesProperty, (byte)63,
DependencyProperty
.PropertyValidity.Reexecute);
106
DependencyProperty
.RegisterAsKnown(WorkflowQueuingService.RootPersistedQueueStatesProperty, (byte)64,
DependencyProperty
.PropertyValidity.Reexecute);
107
DependencyProperty
.RegisterAsKnown(CorrelationTokenCollection.CorrelationTokenCollectionProperty, (byte)65,
DependencyProperty
.PropertyValidity.Always);
108
DependencyProperty
.RegisterAsKnown(CorrelationToken.NameProperty, (byte)67,
DependencyProperty
.PropertyValidity.Uninitialize);
109
DependencyProperty
.RegisterAsKnown(CorrelationToken.OwnerActivityNameProperty, (byte)68,
DependencyProperty
.PropertyValidity.Uninitialize);
110
DependencyProperty
.RegisterAsKnown(CorrelationToken.PropertiesProperty, (byte)69,
DependencyProperty
.PropertyValidity.Uninitialize);
111
DependencyProperty
.RegisterAsKnown(CorrelationToken.SubscriptionsProperty, (byte)70,
DependencyProperty
.PropertyValidity.Uninitialize);
112
DependencyProperty
.RegisterAsKnown(CorrelationToken.InitializedProperty, (byte)71,
DependencyProperty
.PropertyValidity.Uninitialize);
115
DependencyProperty
.RegisterAsKnown(WorkflowDefinitionDispenser.WorkflowDefinitionHashCodeProperty, (byte)80,
DependencyProperty
.PropertyValidity.Reexecute);
119
DependencyProperty
.RegisterAsKnown(WorkflowInstanceIdProperty, (byte)102,
DependencyProperty
.PropertyValidity.Reexecute);
120
DependencyProperty
.RegisterAsKnown(IsBlockedProperty, (byte)103,
DependencyProperty
.PropertyValidity.Reexecute);
121
DependencyProperty
.RegisterAsKnown(WorkflowStatusProperty, (byte)104,
DependencyProperty
.PropertyValidity.Reexecute);
122
DependencyProperty
.RegisterAsKnown(SuspendOrTerminateInfoProperty, (byte)105,
DependencyProperty
.PropertyValidity.Reexecute);
WorkflowQueuingService.cs (6)
35
public readonly static
DependencyProperty
PendingMessagesProperty =
DependencyProperty
.RegisterAttached("PendingMessages", typeof(Queue), typeof(WorkflowQueuingService), new PropertyMetadata(DependencyPropertyOptions.NonSerialized));
38
internal static
DependencyProperty
RootPersistedQueueStatesProperty =
DependencyProperty
.RegisterAttached("RootPersistedQueueStates", typeof(Dictionary<IComparable, EventQueueState>), typeof(WorkflowQueuingService));
39
internal static
DependencyProperty
LocalPersistedQueueStatesProperty =
DependencyProperty
.RegisterAttached("LocalPersistedQueueStates", typeof(Dictionary<IComparable, EventQueueState>), typeof(WorkflowQueuingService));
System.WorkflowServices (96)
System\Workflow\Activities\ChannelToken.cs (6)
29
internal static readonly
DependencyProperty
EndpointNameProperty =
30
DependencyProperty
.Register("EndpointName",
36
internal static readonly
DependencyProperty
NameProperty =
37
DependencyProperty
.Register("Name",
44
internal static readonly
DependencyProperty
OwnerActivityNameProperty =
45
DependencyProperty
.Register("OwnerActivityName",
System\Workflow\Activities\ContextToken.cs (4)
30
internal static readonly
DependencyProperty
NameProperty =
31
DependencyProperty
.Register("Name",
39
internal static readonly
DependencyProperty
OwnerActivityNameProperty =
40
DependencyProperty
.Register("OwnerActivityName",
System\Workflow\Activities\DynamicContractTypeBuilder.cs (2)
24
internal static readonly
DependencyProperty
DynamicContractTypesProperty =
25
DependencyProperty
.RegisterAttached("DynamicContractTypes",
System\Workflow\Activities\LogicalChannelCollection.cs (2)
22
public static readonly
DependencyProperty
LogicalChannelCollectionProperty =
23
DependencyProperty
.RegisterAttached("LogicalChannelCollection",
System\Workflow\Activities\OperationInfo.cs (8)
22
internal static readonly
DependencyProperty
ContractNameProperty =
23
DependencyProperty
.Register("ContractName",
28
internal static readonly
DependencyProperty
IsOneWayProperty =
29
DependencyProperty
.Register("IsOneWay",
34
internal static readonly
DependencyProperty
ParametersProperty =
35
DependencyProperty
.Register("Parameters",
44
internal static readonly
DependencyProperty
ProtectionLevelProperty =
45
DependencyProperty
.Register("ProtectionLevel",
System\Workflow\Activities\OperationInfoBase.cs (8)
28
internal static readonly
DependencyProperty
MethodInfoProperty =
29
DependencyProperty
.Register("MethodInfo",
34
internal static readonly
DependencyProperty
NameProperty =
35
DependencyProperty
.Register("Name",
40
internal static readonly
DependencyProperty
PrincipalPermissionNameProperty =
41
DependencyProperty
.Register("PrincipalPermissionName",
46
internal static readonly
DependencyProperty
PrincipalPermissionRoleProperty =
47
DependencyProperty
.Register("PrincipalPermissionRole",
System\Workflow\Activities\OperationParameterInfo.cs (8)
25
public static readonly
DependencyProperty
AttributesProperty =
26
DependencyProperty
.Register("Attributes",
31
public static readonly
DependencyProperty
NameProperty =
32
DependencyProperty
.Register("Name",
37
public static readonly
DependencyProperty
ParameterTypeProperty =
38
DependencyProperty
.Register("ParameterType",
43
public static readonly
DependencyProperty
PositionProperty =
44
DependencyProperty
.Register("Position",
System\Workflow\Activities\ReceiveActivity.cs (22)
44
public static readonly
DependencyProperty
FaultMessageProperty =
45
DependencyProperty
.Register("FaultMessage",
51
public static readonly
DependencyProperty
OperationValidationEvent =
52
DependencyProperty
.Register("OperationValidation",
57
public static readonly
DependencyProperty
WorkflowServiceAttributesProperty =
58
DependencyProperty
.RegisterAttached("WorkflowServiceAttributes",
65
internal static readonly
DependencyProperty
CanCreateInstanceProperty =
66
DependencyProperty
.Register("CanCreateInstance",
72
internal static readonly
DependencyProperty
ContextTokenProperty =
73
DependencyProperty
.Register("ContextToken",
79
internal static readonly
DependencyProperty
ParameterBindingsProperty =
80
DependencyProperty
.Register("ParameterBindings",
86
internal static readonly
DependencyProperty
ServiceOperationInfoProperty =
87
DependencyProperty
.Register("ServiceOperationInfo",
92
private static readonly
DependencyProperty
QueueNameProperty =
93
DependencyProperty
.Register("QueueName",
97
private static readonly
DependencyProperty
RequestContextProperty =
98
DependencyProperty
.Register("RequestContext",
102
static
DependencyProperty
QueueInitializationModeProperty =
103
DependencyProperty
.Register("QueueInitializationMode",
240
DependencyProperty
ParentDependencyObjectProperty =
241
DependencyProperty
.FromName("ParentDependencyObject", typeof(DependencyObject));
System\Workflow\Activities\ReceiveContextCollection.cs (2)
22
public static readonly
DependencyProperty
ReceiveContextCollectionProperty =
23
DependencyProperty
.RegisterAttached("ReceiveContextCollection",
System\Workflow\Activities\SendActivity.cs (14)
35
public static readonly
DependencyProperty
AfterResponseEvent =
36
DependencyProperty
.Register("AfterResponse",
41
public static readonly
DependencyProperty
BeforeSendEvent =
42
DependencyProperty
.Register("BeforeSend",
47
public static readonly
DependencyProperty
CustomAddressProperty =
48
DependencyProperty
.Register("CustomAddress",
56
internal static readonly
DependencyProperty
ChannelTokenProperty =
57
DependencyProperty
.Register("ChannelToken",
63
internal static readonly
DependencyProperty
ParameterBindingsProperty =
64
DependencyProperty
.Register("ParameterBindings",
70
internal static readonly
DependencyProperty
ServiceOperationInfoProperty =
71
DependencyProperty
.Register("ServiceOperationInfo",
211
DependencyProperty
ParentDependencyObjectProperty =
212
DependencyProperty
.FromName("ParentDependencyObject", typeof(DependencyObject));
System\Workflow\Activities\TypedOperationInfo.cs (2)
23
internal static readonly
DependencyProperty
ContractTypeProperty =
24
DependencyProperty
.Register("ContractType",
System\Workflow\Activities\WorkflowServiceAttributes.cs (18)
22
private static readonly
DependencyProperty
AddressFilterModeProperty =
23
DependencyProperty
.Register("AddressFilterMode",
27
private static readonly
DependencyProperty
ConfigurationNameProperty =
28
DependencyProperty
.Register("ConfigurationName",
32
private static readonly
DependencyProperty
IgnoreExtensionDataObjectProperty =
33
DependencyProperty
.Register("IgnoreExtensionDataObject",
37
private static readonly
DependencyProperty
IncludeExceptionDetailInFaultsProperty =
38
DependencyProperty
.Register("IncludeExceptionDetailInFaults",
42
private static readonly
DependencyProperty
MaxItemsInObjectGraphProperty =
43
DependencyProperty
.Register("MaxItemsInObjectGraph",
47
private static readonly
DependencyProperty
NameProperty =
48
DependencyProperty
.Register("Name",
52
private static readonly
DependencyProperty
NamespaceProperty =
53
DependencyProperty
.Register("Namespace",
57
private static readonly
DependencyProperty
UseSynchronizationContextProperty =
58
DependencyProperty
.Register("UseSynchronizationContext",
62
private static readonly
DependencyProperty
ValidateMustUnderstandProperty =
63
DependencyProperty
.Register("ValidateMustUnderstand",