[This is preliminary documentation and is subject to change.]
Namespace: NFX.ApplicationModel.PileAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static bool DeleteThrough<TKey>(
this ICache cache,
TKey key,
string tblCache,
ICacheParams caching,
Func<TKey, bool> fDelete
)
public static bool DeleteThrough<TKey>(
this ICache cache,
TKey key,
string tblCache,
ICacheParams caching,
Func<TKey, bool> fDelete
)
<ExtensionAttribute>
Public Shared Function DeleteThrough(Of TKey) (
cache As ICache,
key As TKey,
tblCache As String,
caching As ICacheParams,
fDelete As Func(Of TKey, Boolean)
) As Boolean
<ExtensionAttribute>
Public Shared Function DeleteThrough(Of TKey) (
cache As ICache,
key As TKey,
tblCache As String,
caching As ICacheParams,
fDelete As Func(Of TKey, Boolean)
) As Boolean
public:
[ExtensionAttribute]
generic<typename TKey>
static bool DeleteThrough(
ICache^ cache,
TKey key,
String^ tblCache,
ICacheParams^ caching,
Func<TKey, bool>^ fDelete
)
public:
[ExtensionAttribute]
generic<typename TKey>
static bool DeleteThrough(
ICache^ cache,
TKey key,
String^ tblCache,
ICacheParams^ caching,
Func<TKey, bool>^ fDelete
)
static member DeleteThrough :
cache : ICache *
key : 'TKey *
tblCache : string *
caching : ICacheParams *
fDelete : Func<'TKey, bool> -> bool
static member DeleteThrough :
cache : ICache *
key : 'TKey *
tblCache : string *
caching : ICacheParams *
fDelete : Func<'TKey, bool> -> bool
- TKey
Return Value
Type:
BooleanUsage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
ICache. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).