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

llRemoteDataReply() public method

public llRemoteDataReply ( string channel, string message_id, string sdata, int idata ) : DateTime
channel string
message_id string
sdata string
idata int
return DateTime
        public DateTime llRemoteDataReply(string channel, string message_id, string sdata, int idata)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return DateTime.Now;

            IXMLRPC xmlrpcMod = World.RequestModuleInterface<IXMLRPC>();
            xmlrpcMod.RemoteDataReply(channel, message_id, sdata, idata);
            return PScriptSleep(100);
        }
LSL_Api