WebViewManager Constructeur
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.
Construit un instance de WebViewManager.
public WebViewManager (IServiceProvider provider, Microsoft.AspNetCore.Components.Dispatcher dispatcher, Uri appBaseUri, Microsoft.Extensions.FileProviders.IFileProvider fileProvider, Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore jsComponents, string hostPageRelativePath);
new Microsoft.AspNetCore.Components.WebView.WebViewManager : IServiceProvider * Microsoft.AspNetCore.Components.Dispatcher * Uri * Microsoft.Extensions.FileProviders.IFileProvider * Microsoft.AspNetCore.Components.Web.JSComponentConfigurationStore * string -> Microsoft.AspNetCore.Components.WebView.WebViewManager
Public Sub New (provider As IServiceProvider, dispatcher As Dispatcher, appBaseUri As Uri, fileProvider As IFileProvider, jsComponents As JSComponentConfigurationStore, hostPageRelativePath As String)
Paramètres
- provider
- IServiceProvider
IServiceProvider pour l’application.
- dispatcher
- Dispatcher
Un Dispatcher instance qui peut marshaler les appels vers le thread ou le contexte de synchronisation requis.
- appBaseUri
- Uri
URI de base de l’application. Étant donné qu’il s’agit d’une vue web, l’URI de base se trouve généralement sur une origine privée telle que http://0.0.0.0/ ou app://example/
- fileProvider
- IFileProvider
Fournit du contenu statique à la vue web.
- jsComponents
- JSComponentConfigurationStore
Décrit la configuration de l’ajout, de la suppression et de la mise à jour des composants racines du code JavaScript.
- hostPageRelativePath
- String
Chemin d’accès à la page hôte dans le fileProvider
.