Example #1
0
        public override void Output(string value, string jsFunction)
        {
            if (jsFunction == null)
            {
                return;
            }

            value = HttpUtility.UrlDecode(value);
            value = value.Replace("\"", "\\\"");
            _webView.ExecuteJavaScript(jsFunction + "(\"" + value + "\")");
        }