IProducerConsumerCollection<T>.TryTake(T) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Attempts to remove and return an object from the IProducerConsumerCollection<T>.
public:
bool TryTake([Runtime::InteropServices::Out] T % item);
public bool TryTake (out T item);
abstract member TryTake : 'T -> bool
Public Function TryTake (ByRef item As T) As Boolean
Parameters
- item
- T
When this method returns, if the object was removed and returned successfully, item
contains the removed object. If no object was available to be removed, the value is unspecified.
Returns
true
if an object was removed and returned successfully; otherwise, false
.
Applies to
See also
Sodelujte z nami v storitvi GitHub
Vir za to vsebino najdete v storitvi GitHub, kjer lahko tudi ustvarite in pregledate težave in zahtevke za uveljavitev sprememb. Če želite več informacij, glejte naš vodnik za sodelavce.