TreeNodeCollection.IsSynchronized Propriedade

Definição

Obtém um valor que indica se o acesso à TreeNodeCollection é sincronizado (thread-safe).Gets a value indicating whether access to the TreeNodeCollection is synchronized (thread safe).

public:
 property bool IsSynchronized { bool get(); };
public bool IsSynchronized { get; }
member this.IsSynchronized : bool
Public ReadOnly Property IsSynchronized As Boolean

Valor da propriedade

Boolean

false.false.

Implementações

Comentários

A IsSynchronized propriedade é usada para indicar se o acesso ao TreeNodeCollection é sincronizado (thread-safe).The IsSynchronized property is used to indicate whether access to the TreeNodeCollection is synchronized (thread safe). Essa propriedade é derivada da System.Collections.ICollection classe e é substituída para sempre retornar false .This property is derived from the System.Collections.ICollection class and is overridden to always return false.

Para obter mais informações sobre a IsSynchronized propriedade, consulte a ICollection.IsSynchronized propriedade da System.Collections.ICollection interface.For more information on the IsSynchronized property, see the ICollection.IsSynchronized property of the System.Collections.ICollection interface.

Aplica-se a

Confira também