WebBrowser.Source Propriété
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.
Obtient ou définit Uri du document actif hébergé dans WebBrowser.
public:
property Uri ^ Source { Uri ^ get(); void set(Uri ^ value); };
public Uri Source { [System.Security.SecurityCritical] get; set; }
public Uri Source { get; set; }
[<get: System.Security.SecurityCritical>]
member this.Source : Uri with get, set
member this.Source : Uri with get, set
Public Property Source As Uri
Valeur de propriété
Pour Uri le document HTML actuel.
- Attributs
Exceptions
L’instance de WebBrowser n’est plus valide.
Impossible de récupérer une référence au WebBrowser
natif sous-jacent.
Navigation à partir d'une application qui s'exécute en confiance partielle vers Uri qui ne se trouve pas dans le site d'origine.
Exemples
L’exemple suivant montre comment configurer WebBrowser pour accéder à un document HTML en utilisant uniquement le balisage.
<!-- Web Browser Control that hosts a web page. -->
<WebBrowser x:Name="webBrowser" Source="http://msdn.com"
Width="600" Height="600" />
Remarques
La définition de la propriété source entraîne WebBrowser l’accès au document spécifié par le Uri. Si c’est null
le Uri cas, un document vide s’affiche (« about:blank »).