WireBus.WireBusClient.SendRequest C# (CSharp) Method

SendRequest() public method

Send a message to the peer and wait for a reply
public SendRequest ( byte message ) : WireContext
message byte the message to send
return WireContext
		public WireContext SendRequest(byte[] message)
		{
			var task = SendRequestAsync(message);
			task.WaitOne();
			return task.Result;
		}