C# 클래스 CsDebugScript.Engine.Utility.CacheInvalidator

Helper method which invalidates all class fields which are caches starting from the given root objects.
파일 보기 프로젝트 열기: southpolenator/WinDbgCs

공개 메소드들

메소드 설명
InvalidateCaches ( object rootObject ) : void

Invalidates all the instances of type ICache and DictionaryCache{TKey, TValue} which are fields of class given as root object and any fields of the same type in child fields recursively. Use it when there are massive changes and all the caches need to be invalidated.

메소드 상세

InvalidateCaches() 공개 정적인 메소드

Invalidates all the instances of type ICache and DictionaryCache{TKey, TValue} which are fields of class given as root object and any fields of the same type in child fields recursively. Use it when there are massive changes and all the caches need to be invalidated.
public static InvalidateCaches ( object rootObject ) : void
rootObject object Root object from which we recursively drop the caches.
리턴 void