Metalama / / API Documentation / Aspect API / Metalama.​Framework.​Aspects / Aspect­Predecessor­Kind

Class AspectPredecessorKind

Kinds of AspectPredecessor.

Inheritance
AspectPredecessorKind
Namespace: Metalama.Framework.Aspects
Assembly: Metalama.Framework.dll
Syntax
[CompileTime]
public sealed class AspectPredecessorKind : Enum

Fields

Name Description
Attribute

The aspect has been created by a custom attribute. Instance is an IAttribute.

ChildAspect

The aspect has been created by another aspect. Instance is an IAspect.

Fabric

The aspect has been created by a fabric. Instance is an Fabric.

Inherited

Aspects added because of aspect inheritance.

Interactive

The aspect has been applied interactively by the user, e.g. as a live template.

RequiredAspect

The aspect has been required by another aspect using RequireAspect<TAspect>().

value__