Table of Contents

Property ActiveSession

Namespace
MVVrus.AspNetCore.ActiveSession
Assembly
MVVrus.AspNetCore.ActiveSession.dll

ActiveSession

Points to an Active Session object for this request.

IActiveSession ActiveSession { get; }

Property Value

IActiveSession

Remarks

Active Session objects serves as a means of creating, searching and controlling runners available to handlers of requests pertaining to the current ASP.NET Core session. They, like Local Session objects, can also contain a scoped service (DI) container and a dictionary of named objects, associated with the session. A number of different Active Session objects can be associated with a whole ASP.NET Core session, but any specific request handler can have acess to the only Active Session object, that can be terminated and renewed between requests, and, generally speaking,
selected on the basis of the request properties (but this feature is not implemented yet).