Ejemplo n.º 1
0
        public WksRecord(DataBuffer buffer, int length)
        {
            _ipAddress = buffer.ReadIPAddress();
            _protocol = buffer.ReadByte();
            _services = new Byte[length - 5];

            for (int i = 0; i < (length - 5); i++)
                _services[i] = buffer.ReadByte();
        }
Ejemplo n.º 2
0
        public WksRecord(DataBuffer buffer, int length)
        {
            _ipAddress = buffer.ReadIPAddress();
            _protocol  = buffer.ReadByte();
            _services  = new Byte[length - 5];

            for (int i = 0; i < (length - 5); i++)
            {
                _services[i] = buffer.ReadByte();
            }
        }