PWAClientInstallAsync Method |
Version 130.1.90
Installs the given manifest identity, optionally using the given install_url
or IWA bundle location.
TODO(crbug.com/337872319) Support IWA to meet the following specific
requirement.
IWA-specific install description: If the manifest_id is isolated-app://,
install_url_or_bundle_url is required, and can be either an http(s) URL or
file:// URL pointing to a signed web bundle (.swbn). The .swbn file's
signing key must correspond to manifest_id. If Chrome is not in IWA dev
mode, the installation will fail, regardless of the state of the allowlist.
Namespace: CefSharp.DevTools.PWAAssembly: CefSharp.Core (in CefSharp.Core.dll) Version: 129.0.110.0
Syntax public Task<DevToolsMethodResponse> InstallAsync(
string manifestId,
string installUrlOrBundleUrl = null
)
public:
Task<DevToolsMethodResponse^>^ InstallAsync(
String^ manifestId,
String^ installUrlOrBundleUrl = nullptr
)
Parameters
- manifestId String
- manifestId
- installUrlOrBundleUrl String (Optional)
- The location of the app or bundle overriding the one derived from themanifestId.
Return Value
TaskDevToolsMethodResponsereturns System.Threading.Tasks.Task<DevToolsMethodResponse>
See Also