// Copyright © 2014 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. using System; namespace CefSharp { /// /// Event arguments for the AddressChanged event handler. /// public class AddressChangedEventArgs : EventArgs { /// /// Access to the underlying object /// public IBrowser Browser { get; private set; } /// /// The new address /// public string Address { get; private set; } /// /// Creates a new AddressChangedEventArgs event argument. /// /// the browser object /// the address public AddressChangedEventArgs(IBrowser browser, string address) { Browser = browser; Address = address; } } }