// 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. using System; using System.IO; namespace CefSharp { /// /// Callback interface used for asynchronous continuation of . /// public interface IGetExtensionResourceCallback : IDisposable { /// /// Continue the request. Read the resource contents from stream. /// /// stream to be used as response. void Continue(Stream stream); /// /// Continue the request /// /// data to be used as response void Continue(byte[] data); /// /// Cancel the request. /// void Cancel(); } }