System.Threading.SingleThreadedInvoker.GetMRE C# (CSharp) Method

GetMRE() private method

private GetMRE ( ) : ManualResetEvent
return ManualResetEvent
        private ManualResetEvent GetMRE()
        {
            lock (this.cache)
                return (this.cache.Count == 0)
                    ? new ManualResetEvent(false)
                    : this.cache.Dequeue();
        }