// 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 to the TitleChanged event handler. /// public class TitleChangedEventArgs : EventArgs { /// /// Access to the underlying object /// public IBrowser Browser { get; private set; } /// /// The new title /// public string Title { get; private set; } /// /// Creates a new TitleChanged event arg /// /// browser /// the new title public TitleChangedEventArgs(IBrowser browser, string title) { Browser = browser; Title = title; } } }