ValidatorCollection.IsSynchronized Propriedade
Definição
Obtém um valor que indica se a coleção ValidatorCollection é sincronizada.Gets a value that indicates whether the ValidatorCollection collection is synchronized.
public:
property bool IsSynchronized { bool get(); };
public bool IsSynchronized { get; }
member this.IsSynchronized : bool
Public ReadOnly Property IsSynchronized As Boolean
Valor da propriedade
true se a coleção for sincronizada; caso contrário, false.true if the collection is synchronized; otherwise, false.
Implementações
Exemplos
O exemplo de código a seguir demonstra o uso da IsSynchronized propriedade.The following code example demonstrates using the IsSynchronized property.
// Get 'Validators' of the page to myCollection.
ValidatorCollection myCollection1 = Page.Validators;
// Get 'IsReadOnly' property of 'ValidatorCollection'.
bool readOnly_bool = myCollection1.IsReadOnly;
// Get 'IsSynchronized' property of 'ValidatorCollection'.
bool synchronized_bool = myCollection1.IsSynchronized;
// Get a synchronized object of the 'ValidatorCollection'.
ValidatorCollection myCollection2 = (ValidatorCollection)myCollection1.SyncRoot;
myCollection1.Add(myCollection1[0]);
' Get 'Validators' of the page to myCollection.
Dim myCollection1 As ValidatorCollection = Page.Validators
' Get 'IsReadOnly' property of 'ValidatorCollection'.
Dim readOnly_bool As Boolean = myCollection1.IsReadOnly
' Get 'IsSynchronized' property of 'ValidatorCollection'.
Dim synchronized_bool As Boolean = myCollection1.IsSynchronized
' Get a synchronized object of the 'ValidatorCollection'.
Dim myCollection2 As ValidatorCollection = CType(myCollection1.SyncRoot, ValidatorCollection)
myCollection1.Add(myCollection1(0))
Comentários
Se a coleção for sincronizada, ela será thread-safe.If the collection is synchronized, it is thread safe.