WebUIView.InvokeScriptAsync(String, IIterable<String>) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用特定参数从当前加载的 HTML 执行指定的脚本函数,作为异步操作。
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)
参数
- scriptName
-
String
Platform::String
winrt::hstring
要调用的脚本函数的名称。
返回
脚本调用的字符串结果。
实现
M:Windows.Web.UI.IWebViewControl.InvokeScriptAsync(System.String,Windows.Foundation.Collections.IIterable{System.String})
M:Windows.Web.UI.IWebViewControl.InvokeScriptAsync(Platform::String,Windows.Foundation.Collections.IIterable{Platform::String})
M:Windows.Web.UI.IWebViewControl.InvokeScriptAsync(winrt::hstring,Windows.Foundation.Collections.IIterable{winrt::hstring})