Aurora.ScriptEngine.AuroraDotNetEngine.APIs.LSL_Api.llListen C# (CSharp) Метод

llListen() публичный Метод

public llListen ( int channelID, string name, string ID, string msg ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
channelID int
name string
ID string
msg string
Результат Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLInteger
        public LSL_Integer llListen(int channelID, string name, string ID, string msg)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_Integer();

            UUID keyID;
            UUID.TryParse(ID, out keyID);
            if (m_comms != null)
                return m_comms.Listen(m_itemID, m_host.UUID, channelID, name, keyID, msg);
            return -1;
        }
LSL_Api