Esempio n. 1
0
            internal Releaser(AsyncLock toRelease, bool isCanceled)
            {
                if (toRelease == null) throw new ArgumentNullException(nameof(toRelease));

                this._toRelease = toRelease;
                this._isCanceled = isCanceled;
            }
Esempio n. 2
0
 internal Releaser(AsyncLock toRelease) { m_toRelease = toRelease; }