资源简介
除了 WebClient 我们还可以使用一组 WindowsAPI 来完成下载任务。这就是 Windows Internet,简称 WinINet
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Net;
using System.Security.Permissions;
using System.Text;
namespace WinInetDemo3
{
internal class DownloadManager : IDisposable
{
private bool _cancelInstall = false;
private Stopwatch _downloadStopWatch = null;
private MyWinInet _winInet = null;
private int _currentDownloadTotalBytes = 0;
private int _currentDownloadBytesSinceStopWatch = 0;
private BackgroundWorker _bgWorker = null;
internal MyWinInet MyWinInet
{
get
{
if (this._winInet == null)
{
this._winInet = n
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2017-05-30 09:53 WinInetDemo\
文件 1002 2017-05-30 09:57 WinInetDemo3.sln
目录 0 2017-05-30 09:53 WinInetDemo\.vs\
目录 0 2017-05-30 09:53 WinInetDemo\.vs\WinInetDemo3\
目录 0 2017-05-30 09:53 WinInetDemo\.vs\WinInetDemo3\v14\
目录 0 2017-05-30 09:53 WinInetDemo\bin\
目录 0 2017-05-30 10:02 WinInetDemo\bin\Debug\
文件 96 2017-05-30 09:57 WinInetDemo\bin\Debug\log.txt
文件 22016 2017-05-30 09:56 WinInetDemo\bin\Debug\WinInetDemo3.exe
文件 56832 2017-05-30 09:56 WinInetDemo\bin\Debug\WinInetDemo3.pdb
文件 22688 2017-05-30 09:56 WinInetDemo\bin\Debug\WinInetDemo3.vshost.exe
文件 490 2016-07-16 19:44 WinInetDemo\bin\Debug\WinInetDemo3.vshost.exe.manifest
文件 5541 2016-04-21 20:07 WinInetDemo\DownloadManager.cs
文件 3342 2016-04-25 09:25 WinInetDemo\DownloadProcessForm.cs
文件 3848 2016-04-21 19:07 WinInetDemo\DownloadProcessForm.Designer.cs
文件 5817 2016-04-21 19:07 WinInetDemo\DownloadProcessForm.resx
文件 547 2016-04-21 19:06 WinInetDemo\Form1.cs
文件 2127 2016-04-21 19:06 WinInetDemo\Form1.Designer.cs
文件 5817 2016-04-21 19:06 WinInetDemo\Form1.resx
文件 1197 2016-04-21 08:45 WinInetDemo\Log.cs
文件 15248 2016-04-25 09:24 WinInetDemo\MyWinInet.cs
文件 1706 2016-04-21 20:12 WinInetDemo\NativeMethods.cs
目录 0 2017-05-30 09:53 WinInetDemo\obj\
目录 0 2017-05-30 09:57 WinInetDemo\obj\Debug\
文件 864 2017-05-30 09:57 WinInetDemo\obj\Debug\DesignTimeResolveAssemblyReferences.cache
文件 6896 2017-05-30 09:53 WinInetDemo\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
目录 0 2017-05-30 09:53 WinInetDemo\obj\Debug\TempPE\
文件 871 2017-05-30 09:56 WinInetDemo\obj\Debug\WinInetDemo3.csproj.FileListAbsolute.txt
文件 1084 2017-05-30 09:56 WinInetDemo\obj\Debug\WinInetDemo3.csproj.GenerateResource.Cache
文件 2210 2017-05-30 09:56 WinInetDemo\obj\Debug\WinInetDemo3.csprojResolveAssemblyReference.cache
文件 180 2017-05-30 09:56 WinInetDemo\obj\Debug\WinInetDemo3.DownloadProcessForm.resources
............此处省略13个文件信息
- 上一篇:C# WebClient实现文件
- 下一篇:C# 文件之断点续传
相关资源
- Hosts文件管理工具
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- 动态抓取IPC#实现
- 批量陕西音乐广播超级麦克风节目录
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 《C#版Ftp软件源码》
- 基于com串口的文件发送和接收
- ax播放器实现文件拖入播放和拖动到可
-
C# 播放铃声(AxWindowsMediaPla
yer)最新 - gif图片转换成jpg文件格式
- C# 把图片显示成椭圆形状
- C# 水平交错效果显示图像
- winform 浮雕效果的图像
- c# 底片效果显示图像就像旧式相机的
评论
共有 条评论