BTool.DeviceFormUtils.GetSigAuthStr C# (CSharp) Method

GetSigAuthStr() public method

public GetSigAuthStr ( byte sigAuth ) : string
sigAuth byte
return string
        public string GetSigAuthStr(byte sigAuth)
        {
            switch (sigAuth)
            {
                case 0:
                    return "The Authentication Signature is not included with the Write PDU.";
                case 1:
                    return "The included Authentication Signature is valid.";
                case 2:
                    return "The included Authentication Signature is not valid.";
            }
            return "Unknown Signature Authorization";
        }