2 writes to Value
System.Activities.Core.Presentation (2)
System\ServiceModel\Activities\Presentation\BindingEditor.xaml.cs (2)
44this.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)
77if (null == entry.Value) 82else if (Binding == null || !(Binding is ModelItem) || !((ModelItem)Binding).ItemType.Equals(entry.Value.BindingType)) 84Binding instance = (Binding)Activator.CreateInstance(entry.Value.BindingType); 115Func<BindingDescriptor, bool> where = p => null != p.Value && p.Value.BindingType == bindingType;