AspNetEdit.Editor.UI.RootDesignerView.JSDebugStatement C# (CSharp) Метод

JSDebugStatement() приватный Метод

Name: DebugStatement Writes to the console on behalf of Javascript Arguments: string message: the debug message Returns: none
private JSDebugStatement ( string args ) : string
args string
Результат string
        private string JSDebugStatement(string[] args)
        {
            if (args.Length != 1)
                throw new InvalidJSArgumentException ("ThrowException", -1);

            System.Diagnostics.Trace.WriteLine ("Javascript: " + args[0]);
            return string.Empty;
        }