public DecoratorFactoryAttribute(DecoratorOptions decoratorOptions = DecoratorOptions.Default)
 {
     DecoratorOptions = decoratorOptions;
 }
Example #2
0
 public RegisterDecoratorAttribute(Type type, Type decoratedType, DecoratorOptions decoratorOptions = DecoratorOptions.Default)
 {
     Type             = type;
     DecoratedType    = decoratedType;
     DecoratorOptions = decoratorOptions;
 }