c24.Deputy.Checks.ProjectIntegrityCheck.IsSatisfiedBy C# (CSharp) Method

IsSatisfiedBy() public method

public IsSatisfiedBy ( System.Reference reference ) : bool
reference System.Reference
return bool
        public bool IsSatisfiedBy(Reference reference)
        {
            return String.IsNullOrEmpty(reference.Path)
                ? this.refGlobal.IsSatisfiedBy(reference) 
                : this.refExists.IsSatisfiedBy(reference) && this.refExternal.IsSatisfiedBy(reference);
        }