C# Class Z.Expressions.EvalDelegate

An eval delegate used to cache delegate items.
Show file Open project: zzzprojects/Eval-SQL.NET Class Usage Examples

Public Properties

Property Type Description
CacheKey string
Delegate object>.Func
InnerDelegate object
LastAccess System.DateTime

Public Methods

Method Description
EvalDelegate ( string cacheKey, object>.Func delegateAction ) : System

Constructor.

Method Details

EvalDelegate() public method

Constructor.
public EvalDelegate ( string cacheKey, object>.Func delegateAction ) : System
cacheKey string The key used to cache the EvalDelegate.
delegateAction object>.Func The delegate to cache.
return System

Property Details

CacheKey public property

The key used to cache the EvalDelegate.
public string CacheKey
return string

Delegate public property

The delegate to cache.
public Func Delegate
return object>.Func

InnerDelegate public property

The inner delegate.
public object InnerDelegate
return object

LastAccess public property

The last access Date/Time of the delegate.
public DateTime,System LastAccess
return System.DateTime