3 implementations of TryTake
mscorlib (2)
system\Collections\Concurrent\ConcurrentQueue.cs (1)
245bool IProducerConsumerCollection<T>.TryTake(out T item)
system\Collections\Concurrent\ConcurrentStack.cs (1)
760bool IProducerConsumerCollection<T>.TryTake(out T item)
System (1)
sys\system\collections\concurrent\ConcurrentBag.cs (1)
199public bool TryTake(out T result)
1 reference to TryTake
System (1)
sys\system\collections\concurrent\BlockingCollection.cs (1)
743removeSucceeded = m_collection.TryTake(out item);