ClearCanvas.ImageViewer.StudyManagement.Sop.ResetCache C# (CSharp) Method

ResetCache() public method

Resets any values that were cached after reading from DataSource.
Many of the property values are cached for performance reasons, as they generally never change, and parsing values from the image header can be expensive, especially when done repeatedly.
public ResetCache ( ) : void
return void
        public virtual void ResetCache()
        {
            _cache = new CachedValues();
        }