2 writes to Value
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\BindingEditor.xaml.cs (2)
44
this.bindingElements.Add(new BindingDescriptor { BindingName = (string)(this.TryFindResource("bindingEditorEmptyBindingLabel") ?? "none"),
Value
= null });
51
.Select<BindingCollectionElement, BindingDescriptor>(p => new BindingDescriptor() { BindingName = p.BindingName,
Value
= p }));
5 references to Value
System.Activities.Core.Presentation (5)
System\ServiceModel\Activities\Presentation\BindingEditor.xaml.cs (5)
77
if (null == entry.
Value
)
82
else if (Binding == null || !(Binding is ModelItem) || !((ModelItem)Binding).ItemType.Equals(entry.
Value
.BindingType))
84
Binding instance = (Binding)Activator.CreateInstance(entry.
Value
.BindingType);
115
Func<BindingDescriptor, bool> where = p => null != p.
Value
&& p.
Value
.BindingType == bindingType;