JSHost.ImportAsync(String, String, CancellationToken) 方法

定义

通过 JavaScript 主机的 动态导入 API 从提供的 URL 下载并实例化 ES6 模块。 如果之前实例化了具有提供的 moduleName 的模块,则会改为返回该模块。

public static System.Threading.Tasks.Task<System.Runtime.InteropServices.JavaScript.JSObject> ImportAsync (string moduleName, string moduleUrl, System.Threading.CancellationToken cancellationToken = default);
static member ImportAsync : string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Runtime.InteropServices.JavaScript.JSObject>
Public Shared Function ImportAsync (moduleName As String, moduleUrl As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of JSObject)

参数

moduleName
String

ES6 模块的全局唯一标识符,由 JSImportAttribute(String, String)使用。

moduleUrl
String

模块文件的位置。

cancellationToken
CancellationToken

要监视取消请求的标记。

返回

包含模块导出的 JavaScript 对象的代理。

例外

取消令牌已取消。 此异常存储在返回的任务中。

适用于