Table of Contents

Method Dispose

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

Dispose(bool)

Protected, overrides RunnerBase.Dispose(bool), sealed. This method performs a real work of disposing the object instance (synchronously).

protected override sealed void Dispose(bool Disposing)

Parameters

Disposing bool

Flag that the metod is called from Dispose().

Remarks

The parameter Disposing is uses according to disposing pattern to distinguish calls from Dispose() methhod from calls from a finalizer. In this class and in all descenet classes synchronous disposing is implemented via starting asynchronous disposing and waiting its completion. Because this particular class does not have a finalizer, the parameter is of no use.