8 references to ErrorContent
PresentationFramework (8)
src\Framework\System\Windows\Controls\ValidationResult.cs (4)
114
return (IsValid == vr.IsValid) && (
ErrorContent
== vr.
ErrorContent
);
127
return IsValid.GetHashCode() ^ ((
ErrorContent
== null) ? int.MinValue :
ErrorContent
).GetHashCode();
src\Framework\System\Windows\Data\BindingExpression.cs (1)
1611
error = new ValidationError(validationRule, this, validationResult.
ErrorContent
, null);
src\Framework\System\Windows\Data\BindingExpressionBase.cs (1)
1207
UpdateValidationError( new ValidationError(validationRule, this, validationResult.
ErrorContent
, null));
src\Framework\System\Windows\Data\BindingGroup.cs (2)
1000
AddValidationError(new ValidationError(rule, this, validationResult.
ErrorContent
, null));
1234
AddValidationError(new ValidationError(rule, this, validationResult.
ErrorContent
, null));