3 overrides of ValidateAndConvertProposedValue
PresentationFramework (3)
src\Framework\System\Windows\Data\BindingExpression.cs (1)
2144internal override bool ValidateAndConvertProposedValue(out Collection<ProposedValue> values)
src\Framework\System\Windows\Data\MultiBindingExpression.cs (1)
878internal override bool ValidateAndConvertProposedValue(out Collection<ProposedValue> values)
src\Framework\System\Windows\Data\PriorityBindingExpression.cs (1)
459internal override bool ValidateAndConvertProposedValue(out Collection<ProposedValue> values)
4 references to ValidateAndConvertProposedValue
PresentationFramework (4)
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
358return ValidateAndConvertProposedValue(out values);
src\Framework\System\Windows\Data\BindingGroup.cs (1)
1372root.ValidateAndConvertProposedValue(out proposedValues);
src\Framework\System\Windows\Data\MultiBindingExpression.cs (1)
928bool childResult = bindExpr.ValidateAndConvertProposedValue(out childValues);
src\Framework\System\Windows\Data\PriorityBindingExpression.cs (1)
466return bindExpr.ValidateAndConvertProposedValue(out values);