ConcurrentQueue<T>.ICollection.IsSynchronized Propriedade

Definição

Obtém um valor indicando se o acesso ao ICollection está sincronizado com o SyncRoot.Gets a value indicating whether access to the ICollection is synchronized with the SyncRoot.

property bool System::Collections::ICollection::IsSynchronized { bool get(); };
bool System.Collections.ICollection.IsSynchronized { get; }
member this.System.Collections.ICollection.IsSynchronized : bool
 ReadOnly Property IsSynchronized As Boolean Implements ICollection.IsSynchronized

Valor da propriedade

Boolean

Sempre retorna false para indicar que o acesso não está sincronizado.Always returns false to indicate access is not synchronized.

Implementações

Comentários

Este membro é uma implementação do membro de interface explícita.This member is an explicit interface member implementation. Ele só pode ser usado quando a instância de ConcurrentQueue<T> é convertida em uma interface de ICollection.It can be used only when the ConcurrentQueue<T> instance is cast to an ICollection interface.

Aplica-se a