OutputCacheProfile.VaryByCustom Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает свойство VaryByCustom.
public:
property System::String ^ VaryByCustom { System::String ^ get(); void set(System::String ^ value); };
[System.Configuration.ConfigurationProperty("varyByCustom")]
public string VaryByCustom { get; set; }
[<System.Configuration.ConfigurationProperty("varyByCustom")>]
member this.VaryByCustom : string with get, set
Public Property VaryByCustom As String
Значение свойства
Значение VaryByCustom.
- Атрибуты
Примеры
В следующем примере кода показано, как использовать свойство VaryByCustom.
// Get the current VaryByCustom.
String varyByCustomValue =
outputCacheProfile.VaryByCustom;
// Set the VaryByCustom.
outputCacheProfile.VaryByCustom =
string.Empty;
' Get the current VaryByCustom.
Dim varyByCustomValue As String = _
outputCacheProfile.VaryByCustom
' Set the VaryByCustom property.
outputCacheProfile.VaryByCustom = _
String.Empty
Комментарии
Может VaryByCustom быть любым текстом, который представляет настраиваемые требования к кэшированию выходных данных. Если введена пользовательская строка, необходимо переопределить GetVaryByCustomString метод в файле Global.asax приложения.
Примечание
Параметры VaryByCustom совпадают с параметрами, используемыми атрибутом VaryByCustom
директивы @ OutputCache
.