DictTable.Cachelookup Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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();
}