Exemple #1
0
        public virtual bool CanMatch(fo.DicomItem element)
        {
            if (SupportedTags.Count > 0)
            {
                return(SupportedTags.Contains((uint)element.Tag));
            }

            return(true);
        }
Exemple #2
0
        public virtual bool CanMatch(DicomAttribute element)
        {
            if (SupportedTags.Count > 0)
            {
                return(SupportedTags.Contains(element.Tag.TagValue));
            }

            return(true);
        }