BTool.DeviceFormUtils.GetGapAdventAdTypeStr C# (CSharp) Method

GetGapAdventAdTypeStr() public method

public GetGapAdventAdTypeStr ( byte adType ) : string
adType byte
return string
        public string GetGapAdventAdTypeStr(byte adType)
        {
            switch (adType)
            {
                case 0:
                    return "SCAN_RSP data";
                case 1:
                    return "Advertisement data";
            }
            return "Unknown GAP Advent Ad Type";
        }