MyAspect( AttributeExclude=true, AttributeTargetMembers="regex:get_|set_" AttributePriority=100)
public override bool CompileTimeValidate(MethodBase method){return !(method.Name.BeginsWith("set_") || method.Name.BeginsWith("get_"));}