Поделиться через


OutputCacheSettingsSection.OutputCacheProfiles Свойство

Определение

Возвращает объект OutputCacheProfileCollection.

public:
 property System::Web::Configuration::OutputCacheProfileCollection ^ OutputCacheProfiles { System::Web::Configuration::OutputCacheProfileCollection ^ get(); };
[System.Configuration.ConfigurationProperty("outputCacheProfiles")]
public System.Web.Configuration.OutputCacheProfileCollection OutputCacheProfiles { get; }
[<System.Configuration.ConfigurationProperty("outputCacheProfiles")>]
member this.OutputCacheProfiles : System.Web.Configuration.OutputCacheProfileCollection
Public ReadOnly Property OutputCacheProfiles As OutputCacheProfileCollection

Значение свойства

Коллекция OutputCacheProfileCollection объектов OutputCacheProfile.

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство OutputCacheProfiles.

// Get the current OutputCacheProfiles property value.
OutputCacheProfileCollection outputCacheProfilesValue =
  outputCacheSettings.OutputCacheProfiles;
' Get the current OutputCacheProfiles property value.
  Dim outputCacheProfilesValue _
  As OutputCacheProfileCollection = _
  outputCacheSettings.OutputCacheProfiles

Комментарии

Свойство OutputCacheProfiles позволяет программно получить доступ к элементу outputCacheProfiles в файле конфигурации. Свойство можно использовать OutputCacheProfiles для программного outputCacheProfiles изменения элемента.

Раздел outputCacheProfiles содержит OutputCacheProfile объекты, представляющие параметры кэша вывода, которые могут использоваться страницами в приложении. Эти параметры можно применить к странице, задав CacheProfile атрибут директивы @ OutputCache . Примените профиль для управления атрибутами кэширования, такими как зависимости, расположение кэша и время окончания срока действия кэша.

Директива @ OutputCache может переопределить все параметры, содержащиеся в , OutputCacheProfile кроме Enabled свойства . Это позволяет включить или отключить OutputCacheProfile без необходимости изменять директивы на всех страницах, которые могли его переопределить.

Применяется к

См. также раздел