1 write to bindingProperty
System.Activities (1)
System\Activities\RuntimeArgument.cs (1)
70this.bindingProperty = bindingProperty;
6 references to bindingProperty
System.Activities (6)
System\Activities\RuntimeArgument.cs (6)
192if (this.bindingProperty != null) 194Argument argument = (Argument)this.bindingProperty.GetValue(this.bindingPropertyOwner); 198Fx.Assert(this.bindingProperty.PropertyType.IsGenericType, "We only support arguments that are generic types in our reflection walk."); 200argument = (Argument) Activator.CreateInstance(this.bindingProperty.PropertyType); 203if (createEmptyBinding && !this.bindingProperty.IsReadOnly) 205this.bindingProperty.SetValue(this.bindingPropertyOwner, argument);