Mono.Debugger.Backend.Mono.MonoSymbolFile.MonoMethod.read_variables C# (CSharp) Method

read_variables() private method

private read_variables ( Thread thread ) : void
thread Thread
return void
            void read_variables(Thread thread)
            {
                if (!is_loaded)
                    throw new TargetException (TargetError.MethodNotLoaded);
                if (has_variables)
                    return;

                thread.ThreadServant.DoTargetAccess (
                    delegate (TargetMemoryAccess target)  {
                        do_read_variables (target);
                        return null;
                });
            }