BlockingCollection<T>::TryAdd Method (T)
Tries to add the specified item to the BlockingCollection<T>.
Assembly: System (in System.dll)
Parameters
- item
-
Type:
T
The item to be added to the collection.
Return Value
Type: System::Booleantrue if item could be added; otherwise false. If the item is a duplicate, and the underlying collection does not accept duplicate items, then an InvalidOperationException is thrown.
| Exception | Condition |
|---|---|
| ObjectDisposedException | The BlockingCollection<T> has been disposed. |
| InvalidOperationException | The BlockingCollection<T> has been marked as complete with regards to additions. -or- The underlying collection didn't accept the item. |
If the collection is a bounded collection, and is full, this method immediately returns false without adding the item.
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Windows Phone
Available since 8.1