Microsoft.Protocols.TestTools.StackSdk.WsDiscovery.Transport.UdpSender.SendBytes C# (CSharp) 메소드

SendBytes() 공개 메소드

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
리턴 void
        public void SendBytes(byte[] data, string address, int port)
        {
            this.requests.Add(new SoapNetworkMessage(data, address, port));
        }