Class AdditionalActionAttributeAttribute
Denotes a relation between the decorated class and provided attribute type so when the provided attribute is applied on some model's property it indicates that the decorated type is to be utilized as an additional action of a form component in an editing form.
[AttributeUsage(AttributeTargets.Class, AllowMultiple = false)]
public sealed class AdditionalActionAttributeAttribute : Attribute
- Inheritance
-
objectAttributeAdditionalActionAttributeAttribute
- Extension Methods
Constructors
AdditionalActionAttributeAttribute(Type)
Constructor.
public AdditionalActionAttributeAttribute(Type attributeType)
Parameters
attributeType
TypeAttribute type; it must inherit from AdditionalActionAttribute.
Properties
AttributeType
Attribute type.
public Type AttributeType { get; }
Property Value
- Type