BExIS.Ddm.Model.SearchComponent.ContainsSearchComponent C# (CSharp) 메소드

ContainsSearchComponent() 공개 메소드

public ContainsSearchComponent ( string name, string value ) : bool
name string
value string
리턴 bool
        public bool ContainsSearchComponent(string name, string value)
        {
            if (this.ContainsFacet(name)) return true;
            if (this.ContainsProperty(name)) return true;
            if (this.ContainsCategory(name)) return true;
            return false;
        }