BACnet.Ethernet.EthernetPort.EthernetPort C# (CSharp) Method

EthernetPort() public method

Creates a new ethernet port instance
public EthernetPort ( EthernetPortOptions options ) : System
options EthernetPortOptions The options for the port
return System
        public EthernetPort(EthernetPortOptions options)
        {
            this._options = options.Clone();
            this._device = _getCaptureDevice();
            this._device.OnPacketArrival += _onPacketArrival;
        }