protected internal virtual bool TagsMatch(Service binding)
        {
            var serviceTags = binding.Tags;

            return(ServiceInfoTags.ContainsOne(serviceTags));
        }
Exemple #2
0
 protected internal virtual bool LabelStartsWithTag(Service binding) => ServiceInfoTags.StartsWith(binding.Label);
        protected internal virtual bool LabelStartsWithTag(Service binding)
        {
            string label = binding.Label;

            return(ServiceInfoTags.StartsWith(label));
        }
Exemple #4
0
 protected internal virtual bool TagsMatch(Service binding) => ServiceInfoTags.ContainsOne(binding.Tags);