OutputCacheProfileCollection.Add(OutputCacheProfile) Yöntem
Tanım
Önemli
Bazı bilgiler ürünün ön sürümüyle ilgilidir ve sürüm öncesinde önemli değişiklikler yapılmış olabilir. Burada verilen bilgilerle ilgili olarak Microsoft açık veya zımni hiçbir garanti vermez.
Koleksiyona bir OutputCacheProfile nesne ekler.
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)
Parametreler
- name
- OutputCacheProfile
Koleksiyona OutputCacheProfile eklenecek nesnenin adı.
Özel durumlar
OutputCacheProfile Nesnesi koleksiyonda zaten var veya koleksiyon salt okunur.
Örnekler
Aşağıdaki kod örneğinde yönteminin nasıl kullanılacağı gösterilmektedir 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
Açıklamalar
Koleksiyon aynı ada sahip bir OutputCacheProfile nesne içeremez.
Şunlara uygulanır
Ayrıca bkz.
GitHub'da bizimle işbirliği yapın
Bu içeriğin kaynağı GitHub'da bulunabilir; burada ayrıca sorunları ve çekme isteklerini oluşturup gözden geçirebilirsiniz. Daha fazla bilgi için katkıda bulunan kılavuzumuzu inceleyin.