public static OperatorAware IsPublic(this IMetaConstraint <System.Reflection.EventInfo> @this)
 {
     return(Core.MetaSpecificationExtension.Wrap(PublicEvent.Instance));
 }
 public static OperatorAware IsPublic(this IMetaConstraint <PropertyInfo> @this)
 {
     return(Core.MetaSpecificationExtension.Wrap(PublicProperty.Instance));
 }
 public static OperatorAware HasAttribute <TAttribute>(this IMetaConstraint <PropertyInfo> @this)
     where TAttribute : Attribute
 {
     return(Core.MetaSpecificationExtension.Wrap(MemberHasAttribute <PropertyInfo, TAttribute> .Instance));
 }
Exemple #4
0
 public static OperatorAware IsComponent(this IMetaConstraint <System.Type> @this)
 {
     return(Core.MetaSpecificationExtension.Wrap(MetaValidator.Constraints.Win.IsComponent.Instance));
 }
Exemple #5
0
 public static OperatorAware IsPublic(this IMetaConstraint <System.Type> @this)
 {
     return(Core.MetaSpecificationExtension.Wrap(PublicType.Instance));
 }
Exemple #6
0
 public static OperatorAware HasAttribute <TAttribute>(this IMetaConstraint <System.Type> @this)
     where TAttribute : Attribute
 {
     return(Core.MetaSpecificationExtension.Wrap(TypeHasAttribute <TAttribute> .Instance));
 }