Catel.Threading.AsyncLock.Key.Key C# (CSharp) Method

Key() public method

Creates the key for a lock.
public Key ( AsyncLock asyncLock ) : System
asyncLock AsyncLock The lock to release. May not be null.
return System
            public Key(AsyncLock asyncLock)
            {
                _asyncLock = asyncLock;
            }
AsyncLock.Key