Mono.Debugger.Soft.Connection.Type_GetValues C# (CSharp) Method

Type_GetValues() public method

public Type_GetValues ( long id, long fields, long thread_id ) : Mono.Debugger.Soft.ValueImpl[]
id long
fields long
thread_id long
return Mono.Debugger.Soft.ValueImpl[]
		public ValueImpl[] Type_GetValues (long id, long[] fields, long thread_id) {
			int len = fields.Length;
			PacketReader r;
			if (thread_id != 0)
				r = SendReceive (CommandSet.TYPE, (int)CmdType.GET_VALUES_2, new PacketWriter ().WriteId (id).WriteId (thread_id).WriteInt (len).WriteIds (fields));
			else
				r = SendReceive (CommandSet.TYPE, (int)CmdType.GET_VALUES, new PacketWriter ().WriteId (id).WriteInt (len).WriteIds (fields));

			ValueImpl[] res = new ValueImpl [len];
			for (int i = 0; i < len; ++i)
				res [i] = r.ReadValue ();
			return res;
		}			
Connection