C# Класс Microsoft.Protocols.TestTools.StackSdk.WsDiscovery.Transport.SoapOverUdp

Send soap message over UDP.
Наследование: ITransport
Показать файл Открыть проект

Открытые методы

Метод Описание
Dispose ( ) : void

Dispose the class resource

SendBytes ( byte bytes, string address, int port ) : void

Send the soap message over UDP

SoapOverUdp ( ) : System.Net

Initializes a new instance of the SoapOverUdp class.

SoapOverUdp ( string multicastAddress, int multicastPort ) : System.Net

Initializes a new instance of the SoapOverUdp class.

StartListening ( ) : void

Start the unicast and multicast listener

StopListening ( ) : void

Stop the unicast and multicast listener

Приватные методы

Метод Описание
GetUdpClient ( ) : UdpClient

Get a instance of the UDP client

MulticastListener_multicastMsgArrived ( IPEndPoint remoteAddr, byte data ) : void

Receive the multicast message

UnicastListenerMessageArrived ( IPEndPoint remoteAddr, byte data ) : void

Receive the unicast message

Описание методов

Dispose() публичный Метод

Dispose the class resource
public Dispose ( ) : void
Результат void

SendBytes() публичный Метод

Send the soap message over UDP
public SendBytes ( byte bytes, string address, int port ) : void
bytes byte The message data
address string The destination address
port int The destination port
Результат void

SoapOverUdp() публичный Метод

Initializes a new instance of the SoapOverUdp class.
public SoapOverUdp ( ) : System.Net
Результат System.Net

SoapOverUdp() публичный Метод

Initializes a new instance of the SoapOverUdp class.
public SoapOverUdp ( string multicastAddress, int multicastPort ) : System.Net
multicastAddress string The multicast address
multicastPort int The multicast port
Результат System.Net

StartListening() публичный Метод

Start the unicast and multicast listener
public StartListening ( ) : void
Результат void

StopListening() публичный Метод

Stop the unicast and multicast listener
public StopListening ( ) : void
Результат void