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

Deprecated() private method

Reports that the command is deprecated as a script error.
private Deprecated ( string command, string message = "" ) : void
command string The name of the command that is deprecated.
message string Additional information to report to the user. (Optional)
return void
        internal void Deprecated(string command, string message = "")
        {
            string text = "Command deprecated";
            if (message != "")
            {
                text = text + " - " + message;
            }

            Error(command, text);
        }
LSL_Api