Compartir a través de


WebView.InvokeScript(String, String[]) Método

Definición

Nota:

InvokeScript puede modificarse o no estar disponible para las versiones después de Windows 8.1. En su lugar, use InvokeScriptAsync.

Ejecuta la función de script especificada desde el HTML cargado actualmente, con argumentos específicos.

public:
 virtual Platform::String ^ InvokeScript(Platform::String ^ scriptName, Platform::Array <Platform::String ^> ^ arguments) = InvokeScript;
/// [Windows.Foundation.Metadata.Deprecated("Use InvokeScriptAsync instead of InvokeScript. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, Windows.Foundation.UniversalApiContract)]
winrt::hstring InvokeScript(winrt::hstring const& scriptName, winrt::array_view <winrt::hstring const&> const& arguments);
/// [Windows.Foundation.Metadata.Deprecated("Use InvokeScriptAsync instead of InvokeScript. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
winrt::hstring InvokeScript(winrt::hstring const& scriptName, winrt::array_view <winrt::hstring const&> const& arguments);
[Windows.Foundation.Metadata.Deprecated("Use InvokeScriptAsync instead of InvokeScript. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, typeof(Windows.Foundation.UniversalApiContract))]
public string InvokeScript(string scriptName, string[] arguments);
[Windows.Foundation.Metadata.Deprecated("Use InvokeScriptAsync instead of InvokeScript. For more info, see MSDN.", Windows.Foundation.Metadata.DeprecationType.Deprecate, 65536, "Windows.Foundation.UniversalApiContract")]
public string InvokeScript(string scriptName, string[] arguments);
function invokeScript(scriptName, arguments)
Public Function InvokeScript (scriptName As String, arguments As String()) As String

Parámetros

scriptName
String

Platform::String

winrt::hstring

Nombre de la función de script que se va a invocar.

arguments

String[]

Platform::String[]

winrt::hstring[]

Matriz de cadenas que empaqueta argumentos para la función de script.

Devoluciones

String

Platform::String

winrt::hstring

Resultado de la invocación del script.

Atributos

Comentarios

El script invocado solo puede devolver valores de cadena.

Se aplica a

Consulte también