Table of Contents

Method Get

Namespace
FrameworkSystems.FrameworkBase
Assembly
FrameworkSystems.FrameworkBase.dll

Get(IGlobalObjects, string)

Gibt den untypisierten statischen Cache zu dem angegebenen FullName für das angegebene Global zurück, falls dieser existiert, ansonsten null.

public static IStaticCache Get(IGlobalObjects global, string cacheFullName)

Parameters

global IGlobalObjects
cacheFullName string

Returns

IStaticCache

Examples

IStaticCache oCurrencyCache = StaticCache.Get(this.Global, "cdCurrencyCache");

Get(IDevFrameworkDataObject)

Gibt den untypisierten statischen Cache zu dem angegebenen IDevFrameworkDataObject zurück, falls dieser existiert, ansonsten null.

public static IStaticCache Get(IDevFrameworkDataObject devFrameworkDataObject)

Parameters

devFrameworkDataObject IDevFrameworkDataObject

Returns

IStaticCache

Examples

IStaticCache oCurrencyCache = StaticCache.Get(this.oCurrency);