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

GetGapAuthenticatedCsrkStr() public méthode

public GetGapAuthenticatedCsrkStr ( byte authCsrk ) : string
authCsrk byte
Résultat string
        public string GetGapAuthenticatedCsrkStr(byte authCsrk)
        {
            switch (authCsrk)
            {
                case 0:
                    return "CSRK Is Not Authenticated";
                case 1:
                    return "CSRK Is Authenticated";
            }
            return "Unknown GAP Authenticated Csrk";
        }