PermissionSet.SyncRoot プロパティ

定義

現在のコレクションのルート オブジェクトを取得します。

public:
 virtual property System::Object ^ SyncRoot { System::Object ^ get(); };
public virtual object SyncRoot { get; }
member this.SyncRoot : obj
Public Overridable ReadOnly Property SyncRoot As Object

プロパティ値

現在のコレクションのルート オブジェクト。

実装

次のコード例は、 プロパティを使用して現在の SyncRoot コレクションのルート オブジェクトを取得する方法を示しています。 このコード例は、PermissionSet クラスのために提供されている大規模な例の一部です。

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

注釈

をサポート ICollectionするには、このメソッドが必要です。

適用対象