C# Класс Slapper.AutoMapper.Cache

Contains the methods and members responsible for this libraries caching concerns.
Показать файл Открыть проект

Открытые методы

Метод Описание
ClearAllCaches ( ) : void

Clears all internal caches.

ClearInstanceCache ( ) : void

Clears the instance cache. This cache contains all objects created by Slapper.AutoMapper.

Приватные методы

Метод Описание
GetInstanceCache ( ) : object>.Dictionary

Gets the instance cache containing all objects created by Slapper.AutoMapper. This cache exists for the lifetime of the current thread until manually cleared/purged.

Due to the nature of how the cache is persisted, each new thread will recieve it's own unique cache.

Описание методов

ClearAllCaches() публичный статический Метод

Clears all internal caches.
public static ClearAllCaches ( ) : void
Результат void

ClearInstanceCache() публичный статический Метод

Clears the instance cache. This cache contains all objects created by Slapper.AutoMapper.
public static ClearInstanceCache ( ) : void
Результат void