Click or drag to resize

ISuspendTokenResumeCompleteTemporarilyGetToken Method

Resumes the object suspended by this token completely for the time the returned token is referenced and not disposed. The return value is another token that has absorbed the suspend count of the object, resulting in a suspend count of zero. When this other token is finally disposed, the suspend count of the object is increased again by the absorbed suspend count.

Namespace: Altaxo.Main
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
IDisposable ResumeCompleteTemporarilyGetToken()

Return Value

IDisposable
A new token. As long as this token is not disposed, and no other process calls SuspendGetToken, the object is free, that is, not suspended. The object is suspended again when the returned token is disposed.
See Also