• Overview
@angular/core

runInInjectionContext

function
stable

Runs the given function in the context of the given Injector.

API

function runInInjectionContext<ReturnT>(  injector: Injector,  fn: () => ReturnT,): ReturnT;

Description

Runs the given function in the context of the given Injector.

Within the function's stack frame, inject can be used to inject dependencies from the given Injector. Note that inject is only usable synchronously, and cannot be used in any asynchronous callbacks or after any await points.

Jump to details