29 references to ValueProperty
System.Workflow.Activities (19)
Common\BasePropertyDescriptor.cs (5)
517binding.SetBinding(WorkflowParameterBinding.ValueProperty, value as ActivityBind); 519binding.SetValue(WorkflowParameterBinding.ValueProperty, value); 551if (parameters[propertyName].IsBindingSet(WorkflowParameterBinding.ValueProperty)) 552return parameters[propertyName].GetBinding(WorkflowParameterBinding.ValueProperty); 554return parameters[propertyName].GetValue(WorkflowParameterBinding.ValueProperty);
CorrelationValidator.cs (3)
898if (parameterBinding.IsBindingSet(WorkflowParameterBinding.ValueProperty)) 899paramValue = parameterBinding.GetBinding(WorkflowParameterBinding.ValueProperty); 901paramValue = parameterBinding.GetValue(WorkflowParameterBinding.ValueProperty);
InvokeSchedule.cs (2)
296if (paramBinding.GetBinding(WorkflowParameterBinding.ValueProperty) != null) 298ValidationErrorCollection memberErrors = ValidationHelpers.ValidateProperty(manager, invokeWorkflow, paramBinding.GetBinding(WorkflowParameterBinding.ValueProperty), new PropertyValidationContext(paramBinding, null, paramBinding.ParameterName), new BindValidationContext(parameterType, AccessTypes.Read));
InvokeWebService.cs (3)
474if (invokeWebService.ParameterBindings[paramName].IsBindingSet(WorkflowParameterBinding.ValueProperty)) 475paramValue = invokeWebService.ParameterBindings[paramName].GetBinding(WorkflowParameterBinding.ValueProperty); 477paramValue = invokeWebService.ParameterBindings[paramName].GetValue(WorkflowParameterBinding.ValueProperty);
WebServiceReceive.cs (3)
579if (webServiceReceive.ParameterBindings[paramName].IsBindingSet(WorkflowParameterBinding.ValueProperty)) 580paramValue = webServiceReceive.ParameterBindings[paramName].GetBinding(WorkflowParameterBinding.ValueProperty); 582paramValue = webServiceReceive.ParameterBindings[paramName].GetValue(WorkflowParameterBinding.ValueProperty);
WebServiceResponse.cs (3)
414if (webServiceResponse.ParameterBindings[paramName].IsBindingSet(WorkflowParameterBinding.ValueProperty)) 415paramValue = webServiceResponse.ParameterBindings[paramName].GetBinding(WorkflowParameterBinding.ValueProperty); 417paramValue = webServiceResponse.ParameterBindings[paramName].GetValue(WorkflowParameterBinding.ValueProperty);
System.Workflow.ComponentModel (7)
AuthoringOM\ParameterBinding.cs (2)
36return GetValue(ValueProperty); 40SetValue(ValueProperty, value);
Shared\BasePropertyDescriptor.cs (5)
516binding.SetBinding(WorkflowParameterBinding.ValueProperty, value as ActivityBind); 518binding.SetValue(WorkflowParameterBinding.ValueProperty, value); 550if (parameters[propertyName].IsBindingSet(WorkflowParameterBinding.ValueProperty)) 551return parameters[propertyName].GetBinding(WorkflowParameterBinding.ValueProperty); 553return parameters[propertyName].GetValue(WorkflowParameterBinding.ValueProperty);
System.WorkflowServices (3)
System\Workflow\Activities\ValidationHelper.cs (3)
905if (parameterBindings[parameterName].IsBindingSet(WorkflowParameterBinding.ValueProperty)) 908WorkflowParameterBinding.ValueProperty); 913WorkflowParameterBinding.ValueProperty);