admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Copyright © 2019 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.Callback
{
    /// <summary>
    /// Callback for asynchronous continuation of <see cref="IResourceHandler.Read"/>.
    /// </summary>
    public interface IResourceReadCallback : IDisposable
    {
        /// <summary>
        /// Callback for asynchronous continuation of <see cref="IResourceHandler.Read"/>. If bytesRead == 0
        /// the response will be considered complete. 
        /// </summary>
        /// <param name="bytesRead">
        /// If bytesRead == 0 the response will be considered complete.
        /// If bytesRead &gt; 0 then <see cref="IResourceHandler.Read"/> will be called again until the request is complete (based on either the
        /// result or the expected content length). If bytesRead &lt; 0 then the
        /// request will fail and the bytesRead value will be treated as the error
        /// code.
        /// </param>
        void Continue(int bytesRead);
 
        /// <summary>
        /// Gets a value indicating whether the callback has been disposed of.
        /// </summary>
        bool IsDisposed { get; }
    }
}