WebViewNewWindowRequestedEventArgs
WebViewNewWindowRequestedEventArgs
WebViewNewWindowRequestedEventArgs
WebViewNewWindowRequestedEventArgs
Class
Definition
Provides data for the WebView.NewWindowRequested event.
public : sealed class WebViewNewWindowRequestedEventArgs : IWebViewNewWindowRequestedEventArgspublic sealed class WebViewNewWindowRequestedEventArgs : IWebViewNewWindowRequestedEventArgsPublic NotInheritable Class WebViewNewWindowRequestedEventArgs Implements IWebViewNewWindowRequestedEventArgs// This API is not available in Javascript.
- Attributes
Windows 10 requirements
| Device family |
Windows 10 (introduced v10.0.10240.0)
|
| API contract |
Windows.Foundation.UniversalApiContract (introduced v1)
|
Properties
Handled Handled Handled Handled
Gets or sets a value that marks the routed event as handled. A true value for Handled prevents other handlers along the event route from handling the same event again.
public : PlatForm::Boolean Handled { get; set; }public bool Handled { get; set; }Public ReadWrite Property Handled As bool// This API is not available in Javascript.
- Value
- PlatForm::Boolean bool bool bool
true to mark the routed event handled. false to leave the routed event unhandled, which permits the event to potentially route further and be acted on by other handlers. The default is false.
Referrer Referrer Referrer Referrer
Gets the Uniform Resource Identifier (URI) of the content where the navigation was initiated.
public : Uri Referrer { get; }public Uri Referrer { get; }Public ReadOnly Property Referrer As Uri// This API is not available in Javascript.
- Value
- Uri Uri Uri Uri
The Uniform Resource Identifier (URI) of the content where the navigation was initiated.
Uri Uri Uri Uri
Gets the Uniform Resource Identifier (URI) of the content the WebView is attempting to navigate to.
public : Uri Uri { get; }public Uri Uri { get; }Public ReadOnly Property Uri As Uri// This API is not available in Javascript.