GetAUTSuspectedFramework
string GetAUTSuspectedFramework()Description
Attempts to detect the software framework used by the AUT, based on heuristics such as library patterns or metadata.
Possible results include .NET, Qt, MFC, Delphi, or others.
If the framework cannot be identified, an empty string is returned.
Return
string - Name of the suspected framework, or an empty string if unknown.
Example
void main()
{
string fw = GetAUTSuspectedFramework();
Print("Framework: " + fw);
}