예제 #1
0
        public override object[] GetCustomAttributes(Type attributeType, bool inherit)
        {
            ArgumentUtility.CheckNotNull("attributeType", attributeType);

            return(CustomAttributeFinder.GetCustomAttributes(this, attributeType, inherit));
        }
예제 #2
0
        public override bool IsDefined(Type attributeType, bool inherit)
        {
            ArgumentUtility.CheckNotNull("attributeType", attributeType);

            return(CustomAttributeFinder.IsDefined(this, attributeType, inherit));
        }
예제 #3
0
 public override object[] GetCustomAttributes(bool inherit)
 {
     return(CustomAttributeFinder.GetCustomAttributes(this, inherit));
 }