1 instantiation of SetStateActivity
System.Workflow.Activities (1)
Designers\StateDesigner.cs (1)
1169SetStateActivity setState = new SetStateActivity();
37 references to SetStateActivity
System.Workflow.Activities (36)
Designers\ServiceDesigner.cs (1)
51if (typeof(SetStateActivity).IsAssignableFrom(activityType) ||
Designers\SetStateDesigner.cs (2)
70SetStateActivity setState = this.Activity as SetStateActivity;
Designers\StateDesigner.cs (6)
1169SetStateActivity setState = new SetStateActivity(); 1223SetStateActivity setState = FindActivityByQualifiedName(rootState, stateDesignerConnector.SetStateName) as SetStateActivity; 1227PropertyDescriptor property = GetPropertyDescriptor(setState, SetStateActivity.TargetStateNamePropertyName); 1238SetStateActivity setState = FindActivityByQualifiedName(rootState, stateDesignerConnector.SetStateName) as SetStateActivity;
Designers\StateDesigner.TransitionInfo.cs (5)
26private SetStateActivity _setState; 31internal TransitionInfo(SetStateActivity setState, CompositeActivity eventHandler) 41internal SetStateActivity SetState 173SetStateActivity setState = activity as SetStateActivity;
Designers\StateDesignerConnector.cs (2)
297SetStateActivity setState = (SetStateActivity)referenceService.GetReference(constructionArguments["SetStateName"] as string);
SetState.cs (9)
24[ToolboxBitmap(typeof(SetStateActivity), "Resources.SetStateActivity.png")] 34public static readonly DependencyProperty TargetStateNameProperty = DependencyProperty.Register(TargetStateNamePropertyName, typeof(string), typeof(SetStateActivity), new PropertyMetadata("", DependencyPropertyOptions.Metadata, new ValidationOptionAttribute(ValidationOption.Optional))); 83SetStateActivity setState = obj as SetStateActivity; 93SR.GetString(SR.Error_PropertyNotSet, SetStateActivity.TargetStateNamePropertyName), 95SetStateActivity.TargetStateNamePropertyName)); 110validationErrors.Add(new ValidationError(SR.GetError_SetStateMustPointToAState(), ErrorNumbers.Error_SetStateMustPointToAState, false, SetStateActivity.TargetStateNamePropertyName)); 116validationErrors.Add(new ValidationError(SR.GetError_SetStateMustPointToALeafNodeState(), ErrorNumbers.Error_SetStateMustPointToALeafNodeState, false, SetStateActivity.TargetStateNamePropertyName)); 135public static bool Validate(SetStateActivity setState, ValidationErrorCollection validationErrors)
SR.cs (7)
288typeof(SetStateActivity).Name, 299SetStateActivity.TargetStateNameProperty, 338SetStateActivity.TargetStateNameProperty, 415typeof(SetStateActivity).Name, 416SetStateActivity.TargetStateNamePropertyName, 495typeof(SetStateActivity).Name, 568return GetString(MoveSetState, typeof(SetStateActivity).Name);
StateInitialization.cs (2)
99SetStateActivity setState = activity as SetStateActivity;
StateMachineWorkflowInstance.cs (2)
240SetStateActivity setState = activity as SetStateActivity;
System.Workflow.Runtime (1)
System\Activities\Statements\Interop.cs (1)
1246else if (interopBodyType == typeof(System.Workflow.Activities.SetStateActivity))