コード例 #1
0
ファイル: ExternalDriver.cs プロジェクト: tarik-s/Meticulous
        protected virtual bool SupportsImpl(ExternalGroupAttribute groupAttribute)
        {
            var attrType = groupAttribute.GetType();
            if (attrType.IsBaseOrTypeOf(typeof (ExternalGroupAttribute)))
                return true;

            return false;
        }
コード例 #2
0
ファイル: ExternalDriver.cs プロジェクト: tarik-s/Meticulous
 public bool Supports(ExternalGroupAttribute groupAttribute)
 {
     return SupportsImpl(groupAttribute);
 }