2 instantiations of BindingDescriptor
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 }));
7 references to BindingDescriptor
System.Activities.Core.Presentation (7)
System\ServiceModel\Activities\Presentation\BindingEditor.xaml.cs (7)
25
List<
BindingDescriptor
> bindingElements = new List<
BindingDescriptor
>();
51
.Select<BindingCollectionElement,
BindingDescriptor
>(p => new BindingDescriptor() { BindingName = p.BindingName, Value = p }));
76
BindingDescriptor
entry = (
BindingDescriptor
)e.AddedItems[0];
114
BindingDescriptor
toSelect = null;
115
Func<
BindingDescriptor
, bool> where = p => null != p.Value && p.Value.BindingType == bindingType;