/* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ using System; using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Documents; using System.Windows.Ink; using System.Windows.Input; using System.Windows.Media; using System.Windows.Media.Animation; using System.Windows.Shapes; using WPCordovaClassLib.Cordova.JSON; using System.Diagnostics; namespace WPCordovaClassLib.Cordova { /// /// Represents client script function to execute /// public class ScriptCallback : EventArgs { /// /// The scripting function to execute. /// public string ScriptName { get; private set; } /// /// A variable number of strings to pass to the function as parameters. /// public string[] Args { get; private set; } /// /// Creates new instance of a ScriptCallback class. /// /// The scripting function to execute /// A variable number of strings to pass to the function as parameters public ScriptCallback(string function, string[] args) { this.ScriptName = function; this.Args = args; } /// /// Creates new instance of a ScriptCallback class. /// /// The scripting function to execute /// The id argument /// The message argument /// The value argument public ScriptCallback(string function, string id, object msg, object value) { this.ScriptName = function; String arg = String.Format("{{\"id\": {0}, \"msg\": {1}, \"value\": {2}}}", JsonHelper.Serialize(id), JsonHelper.Serialize(msg), JsonHelper.Serialize(value)); this.Args = new string[] { arg }; } } }