Class CreateUdpClient
Represents an operator that creates an OSC communication channel over UDP.
public class CreateUdpClient : CreateTransport, INamedElement
- Inheritance
-
CreateUdpClient
- Implements
- Inherited Members
Constructors
CreateUdpClient()
Initializes a new instance of the CreateUdpClient class.
public CreateUdpClient()
Properties
Port
Gets or sets the local port number from which you intend to communicate.
public int Port { get; set; }
Property Value
RemoteHostName
Gets or sets the DNS name of the remote host to which you intend to send data. If empty, the channel will accept connections from any host.
public string RemoteHostName { get; set; }
Property Value
RemotePort
Gets or sets the port number on the remote host to which you intend to send data. If this value is zero, the channel will accept connections from any port.
public int RemotePort { get; set; }