Share via


DictTable.Cachelookup Method

Definition

Returns the record cache level for the table.

public:
 virtual Microsoft::Dynamics::Ax::Xpp::RecordCacheLevel Cachelookup();
public virtual Microsoft.Dynamics.Ax.Xpp.RecordCacheLevel Cachelookup ();
abstract member Cachelookup : unit -> Microsoft.Dynamics.Ax.Xpp.RecordCacheLevel
override this.Cachelookup : unit -> Microsoft.Dynamics.Ax.Xpp.RecordCacheLevel
Public Overridable Function Cachelookup () As RecordCacheLevel

Returns

A RecordCacheLevel value that indicates the record cache level for the table.

Remarks

The following example shows the retrieval of the cache level for a table.

DictTable dt; 
dt = new DictTable(tablenum(CustTable)); 
if (dt) 
{ 
    print dt.cacheLookup(); 
}

Applies to