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

llHTTPResponse() public method

public llHTTPResponse ( Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLString id, int status, string body ) : void
id Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLString
status int
body string
return void
        public void llHTTPResponse(LSL_Key id, int status, string body)
        {
            // Partial implementation: support for parameter flags needed
            //   see http://wiki.secondlife.com/wiki/llHTTPResponse

            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;


            if (m_UrlModule != null)
                m_UrlModule.HttpResponse(id, status, body);
        }
LSL_Api