2 writes to workflowOutputs
System.Activities (2)
System\Activities\Runtime\ActivityExecutor.cs (2)
601set { this.workflowOutputs = value; } 2355this.workflowOutputs = new Dictionary<string, object>();
5 references to workflowOutputs
System.Activities (5)
System\Activities\Runtime\ActivityExecutor.cs (5)
447return this.workflowOutputs; 600get { return this.workflowOutputs; } 2335Fx.Assert(this.workflowOutputs == null, "We should only get workflow outputs when we actually complete which should only happen once."); 2353if (this.workflowOutputs == null) 2363this.workflowOutputs.Add(argument.Name, location.Value);