WebViewControl.InvokeScriptAsync(String, IIterable<String>) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Exécute la fonction de script spécifiée à partir du code HTML actuellement chargé, avec des arguments spécifiques, en tant qu’action asynchrone.
Pour plus d’informations, consultez Windows.Web.UI.IWebViewControl
public:
virtual IAsyncOperation<Platform::String ^> ^ InvokeScriptAsync(Platform::String ^ scriptName, IIterable<Platform::String ^> ^ arguments) = InvokeScriptAsync;
IAsyncOperation<winrt::hstring> InvokeScriptAsync(winrt::hstring const& scriptName, IIterable<winrt::hstring> const& arguments);
public IAsyncOperation<string> InvokeScriptAsync(string scriptName, IEnumerable<string> arguments);
function invokeScriptAsync(scriptName, arguments)
Public Function InvokeScriptAsync (scriptName As String, arguments As IEnumerable(Of String)) As IAsyncOperation(Of String)
Paramètres
- scriptName
-
String
Platform::String
winrt::hstring
Nom de la fonction de script à appeler.
Tableau de chaînes qui package des arguments dans la fonction de script.
Retours
Objet d’opération asynchrone à partir duquel, une fois l’exécution réussie, vous pouvez récupérer le résultat de chaîne de l’appel de script.