BTool.DeviceFormUtils.GetL2CapInfoTypesStr C# (CSharp) Method

GetL2CapInfoTypesStr() public method

public GetL2CapInfoTypesStr ( ushort infoTypes ) : string
infoTypes ushort
return string
        public string GetL2CapInfoTypesStr(ushort infoTypes)
        {
            switch (infoTypes)
            {
                case (ushort)1:
                    return "CONNECTIONLESS_MTU";
                case (ushort)2:
                    return "EXTENDED_FEATURES";
                case (ushort)3:
                    return "FIXED_CHANNELS";
                default:
                    return "Unknown L2Cap Info Types";
            }
        }