Property ExecutionAnchors
ExecutionAnchors
Manages the lifecycle of execution anchors (disposables) that need to be cleaned up when the script execution completes.
Declaration
public CompositeDisposable ExecutionAnchors { get; set; }
Property Value
Type | Description |
---|---|
CompositeDisposable | A CompositeDisposable containing disposables that are associated with the script's execution. |
Implements
Remarks
Execution anchors are disposable resources that scripts might create during their execution. This property ensures that all such resources are disposed of correctly when the script execution ends, preventing resource leaks.