Please enable JavaScript to view this site.

Memory Validator Help

Navigation: C# API

Tag Tracking

Scroll Prev Top Next More

 

addTracker()

 

Add a tag tracker. The tag tracker is not made the current tracker. It's ID is returned from the function for future use with tag tracking functions.

 
public static UInt32 addTracker(string trackerName);
 

 

pushTracker()

 

Push a tag tracker onto the tag tracker stack. The tag tracker at the top of the stack (if there is one) will be used to tag memory and handle allocations.

 
public static void pushTracker(string trackerName);
 

 

popTracker()

 

Pop a tag tracker from the tag tracker stack. The tag tracker at the top of the stack (if there is one) will be used to tag memory and handle allocations.

 
public static void popTracker();