AuthoringOM\Activity.cs (38)
248SetValue(CustomActivityProperty, false);
249SetValue(NameProperty, GetType().Name);
257SetValue(CustomActivityProperty, false);
258SetValue(NameProperty, name);
495SetValue(NameProperty, value);
511SetValue(EnabledProperty, value);
550SetValue(DescriptionProperty, value);
579this.SetValue(LockCountOnStatusChangeProperty, this.LockCountOnStatusChange + 1);
589this.SetValue(LockCountOnStatusChangeProperty, --lockCountOnStatusChange);
594this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Canceled);
603this.SetValue(LockCountOnStatusChangeProperty, ++lockCountOnStatusChange);
1050this.SetValue(SerializedStreamLengthProperty, memoryStream.Length > max ? memoryStream.Length : max);
1082activityRoot.SetValue(Activity.NestedActivitiesProperty, nestedActivities);
1180returnActivity.SetValue(Activity.WorkflowDefinitionProperty, DefinitionActivity);
1387this.SetValue(SynchronizationHandlesProperty, new ReadOnlyCollection<string>(new List<string>(handles)));
1450this.SetValue(WasExecutingProperty, true);
1452this.SetValue(ExecutionStatusProperty, newStatus);
1503this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Canceled);
1509this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Succeeded);
1517this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Compensated);
1522this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Faulted);
1555this.SetValue(HasPrimaryClosedProperty, true);
1573this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Faulted);
1580this.SetValue(CompletedOrderIdProperty, this.IncrementCompletedOrderId());
1587this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Uninitialized);
1643this.SetValue(ExecutionResultProperty, oldOutcome);
1654parent.SetValue(ActivityExecutionContext.GrantedLocksProperty, cachedGrantedLocks);
1672this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Faulted);
1680this.SetValue(ExecutionResultProperty, ActivityExecutionResult.Uninitialized);
1757compensatableChild.SetValue(ExecutionResultProperty, ActivityExecutionResult.Uninitialized);
1763activity.SetValue(ExecutionResultProperty, ActivityExecutionResult.Uninitialized);
1837this.RootActivity.SetValue(Activity.CompletedOrderIdProperty, completedOrderId + 1);
1843this.RootActivity.SetValue(Activity.CompletedOrderIdProperty, completedOrderId - 1);
1931SetValue(CanModifyActivitiesProperty, false);
1951SetValue(CanModifyActivitiesProperty, false);
2009childActivity.SetValue(ExecutionResultProperty, ActivityExecutionResult.Uninitialized);
2115SetValue(CanModifyActivitiesProperty, value);
2117SetValue(CustomActivityProperty, true);
AuthoringOM\Serializer\ActivityMarkupSerializer.cs (10)
78activity.SetValue(ActivityMarkupSerializer.StartLineProperty, startLine);
79activity.SetValue(ActivityMarkupSerializer.EndLineProperty, startLine);
82activity.SetValue(ActivityMarkupSerializer.EndColumnProperty, currentIndex);
83activity.SetValue(ActivityMarkupSerializer.StartColumnProperty, (currentXoml.IndexOf('<', currentIndex) - currentIndex + 1));
139activity.SetValue(ActivityMarkupSerializer.StartLineProperty, startLine);
140activity.SetValue(ActivityMarkupSerializer.StartColumnProperty, startColumn);
141activity.SetValue(ActivityMarkupSerializer.EndLineProperty, endLine);
142activity.SetValue(ActivityMarkupSerializer.EndColumnProperty, endColumn);
174activity.SetValue(ActivityMarkupSerializer.EndColumnProperty, (currentXoml.Length - lineStartIndex - 1));
176activity.SetValue(ActivityMarkupSerializer.EndColumnProperty, lastNewLine - lineStartIndex);