6 writes to Default
System.Activities (4)
System\Activities\Statements\CompensableActivity.cs (1)
209Variable<bool> assertFlag = new Variable<bool> { Name = "assertFlag", Default = true };
System\Activities\Statements\StateMachine.cs (1)
62this.eventManager = new Variable<StateMachineEventManager> { Name = "EventManager", Default = new StateMachineEventManagerFactory() };
System\Activities\Variable.cs (2)
287this.Default = new LambdaValue<T>(defaultExpression); 312this.Default = new Literal<T>(defaultValue);
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\ReceiveReplyValidationFeature.cs (1)
42Variable<bool> requestInTree = new Variable<bool> { Default = false };
System\ServiceModel\Activities\Presentation\SendReplyValidationFeature.cs (1)
42Variable<bool> requestInTree = new Variable<bool> { Default = false };
4 references to Default
System.Activities (4)
System\Activities\Variable.cs (4)
342return this.Default; 407Fx.Assert(this.Default == null, "Default should be null"); 430Fx.Assert(this.Default.UseOldFastPath, "Should only be called for OldFastPath"); 433T value = executor.ExecuteInResolutionContext<T>(parentInstance, Default);