BACnet.Client.Descriptors.DescriptorRegistrar._getKey C# (CSharp) Method

_getKey() private method

Retrieves a registration key
private _getKey ( ushort vendorId, ushort objectType ) : uint
vendorId ushort The vendor id
objectType ushort The object type
return uint
        private uint _getKey(ushort vendorId, ushort objectType)
        {
            uint key = vendorId;
            key <<= 16;
            key |= objectType;
            return key;
        }