OutputCacheProfileCollection.Item[] プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定された OutputCacheProfile コレクション項目を取得します。
オーバーロード
Item[Int32] |
指定したインデックスの位置にある OutputCacheProfile オブジェクトを取得または設定します。 |
Item[String] |
指定された名前を持つ OutputCacheProfile を取得します。 |
Item[Int32]
指定したインデックスの位置にある OutputCacheProfile オブジェクトを取得または設定します。
public:
property System::Web::Configuration::OutputCacheProfile ^ default[int] { System::Web::Configuration::OutputCacheProfile ^ get(int index); void set(int index, System::Web::Configuration::OutputCacheProfile ^ value); };
public System.Web.Configuration.OutputCacheProfile this[int index] { get; set; }
member this.Item(int) : System.Web.Configuration.OutputCacheProfile with get, set
Default Public Property Item(index As Integer) As OutputCacheProfile
パラメーター
- index
- Int32
OutputCacheProfile オブジェクトのコレクション インデックス。
プロパティ値
指定したインデックスにある OutputCacheProfile です。
例
次のコード例は、Item[] プロパティの使用方法を示しています。
// Get the profile with the specified index.
System.Web.Configuration.OutputCacheProfile outputCacheProfile2 =
outputCacheProfiles[0];
' Get the profile with the specified index.
Dim outputCacheProfile2 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles(0)
こちらもご覧ください
適用対象
Item[String]
指定された名前を持つ OutputCacheProfile を取得します。
public:
property System::Web::Configuration::OutputCacheProfile ^ default[System::String ^] { System::Web::Configuration::OutputCacheProfile ^ get(System::String ^ name); };
public System.Web.Configuration.OutputCacheProfile this[string name] { get; }
member this.Item(string) : System.Web.Configuration.OutputCacheProfile
Default Public ReadOnly Property Item(name As String) As OutputCacheProfile
パラメーター
- name
- String
OutputCacheProfile オブジェクトの名前。
プロパティ値
指定された名前の OutputCacheProfile。
例
次のコード例は、Item[] プロパティの使用方法を示しています。
// Get the profile with the specified name.
System.Web.Configuration.OutputCacheProfile outputCacheProfile3 =
outputCacheProfiles["MyCacheProfile"];
' Get the profile with the specified name.
Dim outputCacheProfile3 _
As System.Web.Configuration.OutputCacheProfile = _
outputCacheProfiles("MyCacheProfile")