Guide 18Experimental
Lithium.Core.Event.PropagateAttribute
Emits the named event after the decorated method completes successfully.
This page is generated from the public C# symbols in src/game/sandbox/Code.
PropagateAttribute
Status: Experimental
Signature
C#
public sealed class PropagateAttribute(string name) : AttributeDescription
Emits the named event after the decorated method completes successfully.
Example
C#
[Event.Propagate("name")]
public sealed class Example { }Members
Name
Status: Experimental
Signature
C#
public string Name { get; }Description
The event name emitted after the decorated method completes.
Example
C#
var value = instance.Name;