JoinBlock<T1,T2>.TryReceiveAll(IList<Tuple<T1,T2>>) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試以同步方式從 IReceivableSourceBlock<TOutput> 接收所有可用項目。
public:
virtual bool TryReceiveAll([Runtime::InteropServices::Out] System::Collections::Generic::IList<Tuple<T1, T2> ^> ^ % items);
public bool TryReceiveAll (out System.Collections.Generic.IList<Tuple<T1,T2>> items);
public bool TryReceiveAll (out System.Collections.Generic.IList<Tuple<T1,T2>>? items);
abstract member TryReceiveAll : IList -> bool
override this.TryReceiveAll : IList -> bool
Public Function TryReceiveAll (ByRef items As IList(Of Tuple(Of T1, T2))) As Boolean
參數
傳回
如果無法收到一或多個項目,則為 true
,否則為false
。
備註
此方法不會封鎖等候來源提供專案。
它會在檢查項目之後傳回,不論專案是否可用。