2018-09-10 02:41:13 +02:00
|
|
|
// Copyright © 2017 The CefSharp Authors. All rights reserved.
|
2017-02-10 00:23:37 +01:00
|
|
|
//
|
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
|
|
namespace CefSharp.Example.RequestEventHandler
|
|
|
|
|
{
|
|
|
|
|
public class OnOpenUrlFromTabEventArgs : BaseRequestEventArgs
|
|
|
|
|
{
|
2019-07-20 16:26:25 +10:00
|
|
|
public OnOpenUrlFromTabEventArgs(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, string targetUrl, WindowOpenDisposition targetDisposition, bool userGesture)
|
|
|
|
|
: base(chromiumWebBrowser, browser)
|
2017-02-10 00:23:37 +01:00
|
|
|
{
|
|
|
|
|
Frame = frame;
|
|
|
|
|
TargetUrl = targetUrl;
|
|
|
|
|
TargetDisposition = targetDisposition;
|
|
|
|
|
UserGesture = userGesture;
|
|
|
|
|
|
|
|
|
|
CancelNavigation = false; // default
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IFrame Frame { get; private set; }
|
|
|
|
|
public string TargetUrl { get; private set; }
|
|
|
|
|
public WindowOpenDisposition TargetDisposition { get; private set; }
|
|
|
|
|
public bool UserGesture { get; private set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Set to true to cancel the navigation or false to allow the navigation to proceed.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool CancelNavigation { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|