Custom attribute that, when applied to a method of an aspect, specifies that this method should be executed
after the last instance constructor of the target class of the aspect has completed execution. That is, this method will be invoked when the target object
will be fully constructed. This custom attribute can be applied only on methods that have return type void
and no parameters.
Namespace: PostSharp.Aspects.Advices
Assembly: PostSharp.dll
Syntax
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = false)]
public sealed class OnInstanceConstructedAdvice : Advice
Remarks
The target object is fully constructed when all its constructors complete execution, including constructors of subclasses. For example, if you apply
this advice to type A
, and class B
extends class A
, then if you create a new instance of B
, the method will be invoked only
after B's constructor ends.
Constructors
Name | Description |
---|---|
OnInstanceConstructedAdvice() |