public EagerlyFacet(EagerlyAttribute.Do what, ISpecification holder)
     : base(Type, holder) {
     What = what;
 }
 private static IEagerlyFacet Create(EagerlyAttribute attribute, ISpecification holder) {
     return attribute == null ? null : new EagerlyFacet(EagerlyAttribute.Do.Rendering, holder);
 }
Example #3
0
 private static IEagerlyFacet Create(EagerlyAttribute attribute, ISpecification holder)
 {
     return(attribute == null ? null : new EagerlyFacet(EagerlyAttribute.Do.Rendering, holder));
 }
 private static IEagerlyFacet Create(EagerlyAttribute attribute, IFacetHolder holder) {
     return attribute == null ? null : new EagerlyFacetAnnotation(Do.Rendering, holder);
 }