IServiceScopeFactory.CreateScope Method

Definition

Create an IServiceScope which contains an IServiceProvider used to resolve dependencies from a newly created scope.

public:
 Microsoft::Extensions::DependencyInjection::IServiceScope ^ CreateScope();
public Microsoft.Extensions.DependencyInjection.IServiceScope CreateScope ();
abstract member CreateScope : unit -> Microsoft.Extensions.DependencyInjection.IServiceScope
Public Function CreateScope () As IServiceScope

Returns

An IServiceScope controlling the lifetime of the scope. Once this is disposed, any scoped services that have been resolved from the ServiceProvider will also be disposed. .

Applies to