Mono.Debugger.Backend.Inferior.get_current_frame C# (CSharp) Méthode

get_current_frame() private méthode

private get_current_frame ( ) : ServerStackFrame
Résultat 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