OutputCacheProfileCollection.AllKeys プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
OutputCacheProfileCollection キーを取得します。
public:
property cli::array <System::String ^> ^ AllKeys { cli::array <System::String ^> ^ get(); };
public string[] AllKeys { get; }
member this.AllKeys : string[]
Public ReadOnly Property AllKeys As String()
プロパティ値
- String[]
コレクション キーが格納されている string
配列。
例
次のコード例は、AllKeys プロパティの使用方法を示しています。
// Get the keys.
object [] keys = outputCacheProfiles.AllKeys;
' Get the keys.
Dim keys As String() = _
outputCacheProfiles.AllKeys