ConcurrentStack(Of T).IProducerConsumerCollection(Of T).TryTake Method (T)
.NET Framework (current version)
Attempts to remove and return an object from the System.Collections.Concurrent.IProducerConsumerCollection(Of T).
Assembly: mscorlib (in mscorlib.dll)
Private Function TryTake ( <OutAttribute> ByRef item As T ) As Boolean Implements IProducerConsumerCollection(Of T).TryTake
Parameters
- item
-
Type:
T
When this method returns, if the operation was successful, item contains the object removed. If no object was available to be removed, the value is unspecified.
Return Value
Type: System.Booleantrue if an element was removed and returned succesfully; otherwise, false.
For ConcurrentStack(Of T), this operation will attempt to pop the object at the top of the ConcurrentStack(Of T).
Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1
Show: