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 OnRenderProcessTerminatedEventArgs : BaseRequestEventArgs
|
|
|
|
|
{
|
2019-07-20 16:26:25 +10:00
|
|
|
public OnRenderProcessTerminatedEventArgs(IWebBrowser chromiumWebBrowser, IBrowser browser, CefTerminationStatus status)
|
|
|
|
|
: base(chromiumWebBrowser, browser)
|
2017-02-10 00:23:37 +01:00
|
|
|
{
|
|
|
|
|
Status = status;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public CefTerminationStatus Status { get; private set; }
|
|
|
|
|
}
|
|
|
|
|
}
|