MonoDevelop.Debugger.Gdb.GdbBacktrace.GetAllLocals C# (CSharp) Method

GetAllLocals() public method

public GetAllLocals ( int frameIndex, Mono.Debugging.Client.EvaluationOptions options ) : Mono.Debugging.Client.ObjectValue[]
frameIndex int
options Mono.Debugging.Client.EvaluationOptions
return Mono.Debugging.Client.ObjectValue[]
		public ObjectValue[] GetAllLocals (int frameIndex, EvaluationOptions options)
		{
			List<ObjectValue> locals = new List<ObjectValue> ();
			locals.AddRange (GetParameters (frameIndex, options));
			locals.AddRange (GetLocalVariables (frameIndex, options));
			return locals.ToArray ();
		}