Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llBase64ToString C# (CSharp) Method

llBase64ToString() public method

public llBase64ToString ( string str ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLString
str string
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLString
        public LSL_String llBase64ToString(string str)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return "";

            try
            {
                return Util.Base64ToString(str);
            }
            catch (Exception e)
            {
                throw new Exception("Error in base64Decode" + e);
            }
        }
LSL_Api