/// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="behavior">Property to access</param>
 /// <param name="type">Type of property</param>
 internal PropertySetterParam(IPropertyBehaviorInternal <TComponent> behavior, Type type) :
     base(behavior, typeof(Action <>).MakeGenericType(type))
 {
 }
Example #2
0
 /// <summary>
 /// Constructor.
 /// </summary>
 /// <param name="behavior">Property behavior to access</param>
 /// <param name="type">Type of property</param>
 internal PropertyParamBase(IPropertyBehaviorInternal <TComponent> behavior, Type type)
 {
     Type     = type;
     Behavior = behavior;
 }