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