예제 #1
0
        protected virtual bool SupportsImpl(ExternalGroupAttribute groupAttribute)
        {
            var attrType = groupAttribute.GetType();
            if (attrType.IsBaseOrTypeOf(typeof (ExternalGroupAttribute)))
                return true;

            return false;
        }
예제 #2
0
 public bool Supports(ExternalGroupAttribute groupAttribute)
 {
     return SupportsImpl(groupAttribute);
 }