BTool.DeviceFormUtils.GetGapUiInputStr C# (CSharp) 메소드

GetGapUiInputStr() 공개 메소드

public GetGapUiInputStr ( byte uiInput ) : string
uiInput byte
리턴 string
        public string GetGapUiInputStr(byte uiInput)
        {
            switch (uiInput)
            {
                case 0:
                    return "Don’t Ask User To Input A Passcode";
                case 1:
                    return "Ask User To Input A Passcode";
            }
            return "Unknown GAP UI Input";
        }