Base
Gets a dynamic object that gives access to the members of the base class for the current instance, equivalent to base in C#.
The syntax to access these members is e.g. meta.Base.MyMethod().
Declaration
public static dynamic Base { get; }Property Value
| Type | Description |
|---|---|
| dynamic |
Remarks
The Base property exposes the state of the target type as it is before the application of the current aspect layer. It corresponds to InvokerOptions.Default. To access the final layer, use This. To access static members, use BaseType.
Because Base returns a dynamic value, any member accessed through it is validated when the template
is expanded, not when the template is compiled.