다음을 통해 공유


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

추가 정보

적용 대상