OpenSim.Region.ScriptEngine.Shared.Api.LSL_Api.llHTTPResponse C# (CSharp) Method

llHTTPResponse() public method

public llHTTPResponse ( OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLString id, int status, string body ) : void
id OpenSim.Region.ScriptEngine.Shared.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

            m_host.AddScriptLPS(1);

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