Table of Contents

Method Dispose

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

Dispose()

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. It is a part of IDisposable interface implementation.

public void Dispose()

Dispose(bool)

Protected virtual. This method performs a real work of disposing the object instance (synchronously).

protected virtual 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. Because this particular class does not have a finalizer, the parameter is of no use.