Microsoft.Protocols.TestTools.StackSdk.WsDiscovery.Transport.UdpSender.SendBytes C# (CSharp) Method

SendBytes() public method

Send message to destination
public SendBytes ( byte data, string address, int port ) : void
data byte Message data
address string Destination address
port int Destination port
return void
        public void SendBytes(byte[] data, string address, int port)
        {
            this.requests.Add(new SoapNetworkMessage(data, address, port));
        }