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

VM_InvokeMethod() public method

public VM_InvokeMethod ( long thread, long method, ValueImpl this_arg, ValueImpl arguments, InvokeFlags flags, ValueImpl &exc ) : ValueImpl
thread long
method long
this_arg ValueImpl
arguments ValueImpl
flags InvokeFlags
exc ValueImpl
return ValueImpl
		public ValueImpl VM_InvokeMethod (long thread, long method, ValueImpl this_arg, ValueImpl[] arguments, InvokeFlags flags, out ValueImpl exc) {
			exc = null;
			PacketReader r = SendReceive (CommandSet.VM, (int)CmdVM.INVOKE_METHOD, new PacketWriter ().WriteId (thread).WriteInt ((int)flags).WriteId (method).WriteValue (this_arg).WriteInt (arguments.Length).WriteValues (arguments));
			if (r.ReadByte () == 0) {
				exc = r.ReadValue ();
				return null;
			} else {
				return r.ReadValue ();
			}
		}
Connection