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

llGetOwner() public method

public llGetOwner ( ) : Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLString
return Aurora.ScriptEngine.AuroraDotNetEngine.LSL_Types.LSLString
        public LSL_String llGetOwner()
        {
            if (!ScriptProtection.CheckThreatLevel(ThreatLevel.None, "LSL", m_host, "LSL", m_itemID)) return new LSL_String();


            return m_host.OwnerID.ToString();
        }
LSL_Api