Summary
An attribute that can be added to a custom <see cref="T:System.Attribute" /> class for special code generation behavior.
They'll then be applied to methods and properties when they are decorated with <i>that</i> attribute.
Properties
CallbackName |
The name of the callback method. This can be a fully qualified static method callback or a simple callback to invoke
on the target object if the method or property target is not static.
|
Priority |
Attributes with a higher priority will wrap the target first. The default priority is 0.
|
Type |
The type of code generation you want to do.
You will need to specify whether it should apply to instance or static methods and properties using the Sandbox.CodeGeneratorFlags.Instance
and Sandbox.CodeGeneratorFlags.Static flags.
|