BTool.DeviceFormUtils.GetGapAdventAdTypeStr C# (CSharp) Méthode

GetGapAdventAdTypeStr() public méthode

public GetGapAdventAdTypeStr ( byte adType ) : string
adType byte
Résultat 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";
        }