ConcurrentQueue<T>.IProducerConsumerCollection<T>.TryAdd Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Tente d'ajouter un objet à IProducerConsumerCollection<T>.
virtual bool System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd(T item) = System::Collections::Concurrent::IProducerConsumerCollection<T>::TryAdd;
bool IProducerConsumerCollection<T>.TryAdd (T item);
abstract member System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd : 'T -> bool
override this.System.Collections.Concurrent.IProducerConsumerCollection<T>.TryAdd : 'T -> bool
Function TryAdd (item As T) As Boolean Implements IProducerConsumerCollection(Of T).TryAdd
Paramètres
- item
- T
Objet à ajouter à IProducerConsumerCollection<T>. La valeur peut être une référence null (Nothing en Visual Basic) pour les types référence.
Retours
true
si l’objet a été ajouté ; sinon, false
.
Implémente
Remarques
Pour ConcurrentQueue<T>, cette opération ajoute toujours l’objet à la fin de et ConcurrentQueue<T> retourne true.