Tao.Lua SDK Documentation

Lua.lua_getinfo Method 

Returns information about a specific function or function invocation.

[Visual Basic]
Public Shared Function lua_getinfo( _
   ByVal L As IntPtr, _
   ByVal what As String, _
   ByVal ar As lua_Debug _
) As Integer
[C#]
public static int lua_getinfo(
   IntPtr L,
   string what,
   lua_Debug ar
);

Parameters

L
what
ar

Return Value

Remarks

To get information about a function invocation, the parameter ar must be a valid activation record that was filled by a previous call to lua_getstack or given as argument to a hook (see lua_Hook).

See Also

Lua Class | Tao.Lua Namespace