Skip to main content

SignalWire.Relay.Calling.CallTapDevice.RTPParams

This object represents the parameters specific to RTP device tapping.

Constructor​

The only constructor is the default constructor, properties should all be assigned by initializer or after construction.

Parameters

None

Examples

Basic Example

CallTapDevice device = new CallTapDevice
{
Type = CallTapDevice.DeviceType.rtp,
Parameters = new CallTapDevice.RTPParams
{
Address = "1.2.3.4",
Port = 12345,
}
};

Properties​

PropertyTypeDescription
AddressstringThe IP address of the tap device.
PortintegerThe port of the tap device.

Methods​

None

Events​

None