次の方法で共有


OutputCacheProfileCollection.Item[] プロパティ

定義

指定された 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

指定したインデックスにある 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

指定された名前の 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")

こちらもご覧ください

適用対象