ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Desktop.Mapping Namespace / Layer Class / SetDisplayCacheMaxAge Method
Example

In This Topic
    SetDisplayCacheMaxAge Method
    In This Topic
    Sets the duration after which the layer's display cache will be refreshed in the local storage. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    Public Sub SetDisplayCacheMaxAge( _
       ByVal displayCacheAge As TimeSpan _
    ) 
    public void SetDisplayCacheMaxAge( 
       TimeSpan displayCacheAge
    )

    Parameters

    displayCacheAge
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Remarks
    Only applies when DisplayCacheType = ArcGIS.Core.CIM.DisplayCacheType.MaxAge otherwise it is ignored.
    Example
    Set the layer cache
    {
        // change from the default 5 min to 2 min
        //Note: needs to be called on the MCT
        featureLayer.SetDisplayCacheMaxAge(TimeSpan.FromMinutes(2));
    }
    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also