Home > Contents > Index >
ICS.DisableCache
Disables caching on the Sites and EvalServer servlets for the current page evaluation.
Syntax
public void DisableCache()Parameters
None.
Description
The
DisableCache
method disables caching on both the EvalServer and the Sites servlets for the current page evaluation. This does not affect any other thread and does not affect export.Use this method when an error is detected in the page that should prevent it from being cached.
Returns
None.
Example
The following example disables caching when an error is detected in the page:
int err = ics.GetErrno
(); if (err != 0) {ics.DisableCache();}
Home > Contents > Index > ![]()
Oracle JAVA Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.