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")