PermissionSet.IsSynchronized Proprietà

Definizione

Ottiene un valore che indica se la raccolta è sicuramente thread-safe.

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

Valore della proprietà

Sempre false.

Implementazioni

Esempio

Nell'esempio IsSynchronized di codice seguente viene illustrato il valore restituito dalla proprietà . Questo esempio di codice fa parte di un esempio più grande fornito per la PermissionSet classe.

// Display the value of the IsSynchronized property.
Console::WriteLine( "IsSynchronized property = {0}", ps1->IsSynchronized );
// Display the value of the IsSynchronized property.
Console.WriteLine("IsSynchronized property = " + ps1.IsSynchronized);
' Display the value of the IsSynchronized property.
Console.WriteLine("IsSynchronized property = " & ps1.IsSynchronized)

Commenti

PermissionSet non gestisce automaticamente la sicurezza dei thread, quindi questa proprietà è sempre false.

Questo metodo è necessario per supportare ICollection.

Si applica a