internal Releaser(AsyncLock toRelease, bool isCanceled) { if (toRelease == null) throw new ArgumentNullException(nameof(toRelease)); this._toRelease = toRelease; this._isCanceled = isCanceled; }
internal Releaser(AsyncLock toRelease) { m_toRelease = toRelease; }