Property declaration of AACache
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private static CacheStaticInfo _staticInfo; | |
private static Type _pXCacheExtensionCollectionType; | |
protected static CacheStaticInfo StaticInfo | |
{ | |
get | |
{ | |
if (_staticInfo == null) | |
{ | |
_staticInfo = _Initialize(false); | |
} | |
return _staticInfo; | |
} | |
} | |
protected static Type PXCacheExtensionCollectionType | |
{ | |
get | |
{ | |
if (_pXCacheExtensionCollectionType == null) | |
{ | |
Assembly assembly = Assembly.Load("PX.Data"); | |
_pXCacheExtensionCollectionType = assembly.GetType("PX.Data.PXCacheExtensionCollection"); | |
} | |
return _pXCacheExtensionCollectionType; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment