Mono.Debugger.Backend.Inferior.get_current_frame C# (CSharp) Method

get_current_frame() private method

private get_current_frame ( ) : ServerStackFrame
return ServerStackFrame
        ServerStackFrame get_current_frame()
        {
            check_disposed ();
            ServerStackFrame frame;
            TargetError result = mono_debugger_server_get_frame (server_handle, out frame);
            check_error (result);
            return frame;
        }
Inferior