AcManager.Tools.AcObjectsNew.AcCommonObject.RemoveError C# (CSharp) Méthode

RemoveError() public méthode

public RemoveError ( AcErrorType type ) : void
type AcErrorType
Résultat void
        public void RemoveError(AcErrorType type) {
            if (!HasError(type)) return;
            _errors.Remove(_errors.FirstOrDefault(x => x.Type == type));
            if (Errors.Count == 0) {
                OnPropertyChanged(nameof(HasErrors));
            }
        }

Same methods

AcCommonObject::RemoveError ( IAcError error ) : void