SIGN IN SIGN UP
cefsharp / CefSharp UNCLAIMED

.NET (WPF and Windows Forms) bindings for the Chromium Embedded Framework

0 0 1 C#
// Copyright © 2017 The CefSharp Authors. All rights reserved.
//
// 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
{
public OnOpenUrlFromTabEventArgs(IWebBrowser chromiumWebBrowser, IBrowser browser, IFrame frame, string targetUrl, WindowOpenDisposition targetDisposition, bool userGesture)
: base(chromiumWebBrowser, browser)
{
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; }
}
}