ConcurrentBag<T>.TryPeek(T) Method

Definition

Attempts to return an object from the ConcurrentBag<T> without removing it.

public:
 bool TryPeek([Runtime::InteropServices::Out] T % result);
public bool TryPeek (out T result);
member this.TryPeek : 'T -> bool
Public Function TryPeek (ByRef result As T) As Boolean

Parameters

result
T

When this method returns, result contains an object from the ConcurrentBag<T> or the default value of T if the operation failed.

Returns

true if an object was returned successfully; otherwise, false.

Applies to

See also