OutputCacheProfileCollection.Add(OutputCacheProfile) 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에 OutputCacheProfile 개체를 추가합니다.
public:
void Add(System::Web::Configuration::OutputCacheProfile ^ name);
public void Add (System.Web.Configuration.OutputCacheProfile name);
member this.Add : System.Web.Configuration.OutputCacheProfile -> unit
Public Sub Add (name As OutputCacheProfile)
매개 변수
- name
- OutputCacheProfile
컬렉션에 추가할 OutputCacheProfile 개체의 이름입니다.
예외
OutputCacheProfile 개체가 컬렉션에 이미 있거나 컬렉션이 읽기 전용인 경우
예제
다음 코드 예제에서는 Add 메서드를 사용하는 방법을 보여 줍니다.
// Execute the Add method.
System.Web.Configuration.OutputCacheProfile outputCacheProfile0 =
new System.Web.Configuration.OutputCacheProfile("MyCacheProfile");
outputCacheProfile0.Location =
System.Web.UI.OutputCacheLocation.Any;
outputCacheProfile0.NoStore = false;
outputCacheProfiles.Add(outputCacheProfile0);
// Update if not locked.
if (!outputCacheSettings.IsReadOnly())
{
webConfig.Save();
}
' Execute the Add method.
Dim outputCacheProfile0 _
As New System.Web.Configuration.OutputCacheProfile( _
"MyCacheProfile")
outputCacheProfile0.Location = _
System.Web.UI.OutputCacheLocation.Any
outputCacheProfile0.NoStore = _
False
outputCacheProfiles.Add(outputCacheProfile0)
' Update if not locked.
If Not outputCacheSettings.IsReadOnly() Then
webConfig.Save()
End If
설명
컬렉션에 포함 될 수 없습니다는 OutputCacheProfile 동일한 이름 가진 개체입니다.