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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// 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
{
    /// <summary>
    /// Class used to represent a download item.
    /// </summary>
    public sealed class DownloadItem
    {
        /// <summary>
        /// Returns true if this object is valid. Do not call any other methods if this function returns false.
        /// </summary>
        public bool IsValid { get; set; }
 
        /// <summary>
        /// Returns true if the download is in progress.
        /// </summary>
        public bool IsInProgress { get; set; }
 
        /// <summary>
        /// Returns true if the download is complete.
        /// </summary>
        public bool IsComplete { get; set; }
 
        /// <summary>
        /// Returns true if the download has been canceled or interrupted.
        /// </summary>
        public bool IsCancelled { get; set; }
 
        /// <summary>
        /// Returns a simple speed estimate in bytes/s.
        /// </summary>
        public Int64 CurrentSpeed { get; set; }
 
        /// <summary>
        /// Returns the rough percent complete or -1 if the receive total size is unknown.
        /// </summary>
        public int PercentComplete { get; set; }
 
        /// <summary>
        /// Returns the total number of bytes.
        /// </summary>
        public Int64 TotalBytes { get; set; }
 
        /// <summary>
        /// Returns the number of received bytes.
        /// </summary>
        public Int64 ReceivedBytes { get; set; }
 
        /// <summary>
        /// Returns the time that the download started
        /// </summary>
        public DateTime? StartTime { get; set; }
 
        /// <summary>
        /// Returns the time that the download ended
        /// </summary>
        public DateTime? EndTime { get; set; }
 
        /// <summary>
        /// Returns the full path to the downloaded or downloading file.
        /// </summary>
        public string FullPath { get; set; }
 
        /// <summary>
        /// Returns the unique identifier for this download.
        /// </summary>
        public int Id { get; set; }
 
        /// <summary>
        /// Returns the URL.
        /// </summary>
        public string Url { get; set; }
 
        /// <summary>
        /// Returns the URL as it was before any redirects.
        /// </summary>
        public string OriginalUrl { get; set; }
 
        /// <summary>
        /// Returns the suggested file name.
        /// </summary>
        public string SuggestedFileName { get; set; }
 
        /// <summary>
        /// Returns the content disposition.
        /// </summary>
        public string ContentDisposition { get; set; }
 
        /// <summary>
        /// Returns the mime type.
        /// </summary>
        public string MimeType { get; set; }
    }
}