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

llListenRemove() public method

public llListenRemove ( int number ) : void
number int
return void
        public void llListenRemove(int number)
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return;

            if (m_comms != null)
                m_comms.ListenRemove(m_itemID, number);
        }
LSL_Api