// Copyright © 2018 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 { /// /// Implement this interface to provide handler implementations. /// Methods will be called by the process and/or thread indicated. /// public interface IApp { /// /// Return the handler for functionality specific to the browser process. /// This method is called on multiple threads. /// IBrowserProcessHandler BrowserProcessHandler { get; } /// /// Provides an opportunity to register custom schemes. Do not keep a reference to the object. /// This method is called on the main thread for each process and the registered schemes should be the same across all processes. /// /// scheme registra void OnRegisterCustomSchemes(ISchemeRegistrar registrar); } }