找传奇、传世资源到传世资源站!

C# .NET上传大文件并断点续传 包括控件源码和实例下载页

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

【例子介绍】C# .NET上传大文件并断点续传 包括控件源码和实例下载页

【相关图片】

from clipboard

from clipboard

from clipboard

【源码结构】

.
├── C# .NET上传大文件并断点续传 包括控件源码和实例下载页
│   └── C# .NET上传大文件并断点续传 包括控件源码和实例下载页
│       └── HelloCsharp.com
│           └── BreakpointTransmissionhttp大文件断点续传
│               ├── BreakpointTransmission.Client
│               │   ├── BreakpointTransmission.Client.csproj
│               │   ├── BreakpointUploader.cs
│               │   ├── Configuration
│               │   │   ├── NameTypeConfigurationElement.cs
│               │   │   ├── RequestConfigurationElement.cs
│               │   │   ├── TypeConfigurationElement.cs
│               │   │   └── UploadConfigurationSection.cs
│               │   ├── Const.cs
│               │   ├── CreateRequestHeadersHandler.cs
│               │   ├── Delegates.cs
│               │   ├── ICreateRequestHeaders.cs
│               │   ├── Properties
│               │   │   └── AssemblyInfo.cs
│               │   ├── ResponseParameterEntry.cs
│               │   ├── UploadEventArgs.cs
│               │   ├── UploadFactory.cs
│               │   ├── UploadType.cs
│               │   └── bin
│               │       ├── Debug
│               │       │   ├── BreakpointTransmission.Client.dll
│               │       │   └── BreakpointTransmission.Client.pdb
│               │       └── Release
│               ├── BreakpointTransmission.Client.Tester
│               │   ├── App.config
│               │   ├── BreakpointTransmission.Client.Tester.csproj
│               │   ├── Form1.Designer.cs
│               │   ├── Form1.cs
│               │   ├── Form1.resx
│               │   ├── Program.cs
│               │   ├── Properties
│               │   │   ├── AssemblyInfo.cs
│               │   │   ├── Resources.Designer.cs
│               │   │   ├── Resources.resx
│               │   │   ├── Settings.Designer.cs
│               │   │   └── Settings.settings
│               │   ├── bin
│               │   │   └── Debug
│               │   │       ├── BreakpointTransmission.Client.dll
│               │   │       ├── BreakpointTransmission.Client.pdb
│               │   │       ├── BreakpointTransmission.Service.dll
│               │   │       ├── BreakpointTransmission.Service.pdb
│               │   │       ├── RouterInterface.dll
│               │   │       └── RouterInterface.pdb
│               │   └── obj
│               │       └── Debug
│               │           └── TempPE
│               ├── BreakpointTransmission.Service
│               │   ├── AcceptFileEventArgs.cs
│               │   ├── AcceptFileModule.cs
│               │   ├── BreakpointAcceptFileHandler.cs
│               │   ├── BreakpointFileManager.cs
│               │   ├── BreakpointFileWriteStream.cs
│               │   ├── BreakpointTransmission.Service.csproj
│               │   ├── BreakpointTransmission.Service.csproj.user
│               │   ├── Configuration
│               │   │   ├── BreakpointConfigurationSection.cs
│               │   │   ├── ConfigurationHelper.cs
│               │   │   ├── Plugin
│               │   │   │   └── PluginConfigurationElement.cs
│               │   │   └── TypeConfigurationElement.cs
│               │   ├── Const.cs
│               │   ├── Delegates.cs
│               │   ├── Entry
│               │   │   ├── BlockEntry.cs
│               │   │   ├── BreakpointEntry.cs
│               │   │   ├── FileEntry.cs
│               │   │   └── RequestParameterEntry.cs
│               │   ├── Logging
│               │   │   ├── ILog.cs
│               │   │   ├── Logger.cs
│               │   │   └── TextLogger.cs
│               │   ├── Plugin
│               │   │   ├── IBreakpointAcceptFileHandler.cs
│               │   │   ├── PluginFactory.cs
│               │   │   └── PluginManager.cs
│               │   ├── Properties
│               │   │   └── AssemblyInfo.cs
│               │   ├── ReadFileEventArgs.cs
│               │   ├── Routing
│               │   │   └── BreakpointFilePathRouting.cs
│               │   ├── Utility.cs
│               │   ├── WriteFileEventArgs.cs
│               │   ├── bin
│               │   │   ├── Debug
│               │   │   │   ├── BreakpointTransmission.Service.dll
│               │   │   │   ├── BreakpointTransmission.Service.pdb
│               │   │   │   ├── BreakpointTransmission.dll
│               │   │   │   ├── BreakpointTransmission.pdb
│               │   │   │   ├── RouterInterface.dll
│               │   │   │   └── RouterInterface.pdb
│               │   │   └── Release
│               │   └── obj
│               │       └── Debug
│               │           ├── BreakpointTransmission.Service.dll
│               │           ├── BreakpointTransmission.Service.pdb
│               │           ├── BreakpointTransmission.dll
│               │           ├── BreakpointTransmission.pdb
│               │           └── TempPE
│               ├── BreakpointTransmission.WebTester
│               │   ├── BreakpointTransmission.WebTester.csproj
│               │   ├── BreakpointTransmission.WebTester.csproj.user
│               │   ├── Default.aspx
│               │   ├── Default.aspx.cs
│               │   ├── Default.aspx.designer.cs
│               │   ├── PluginTest.cs
│               │   ├── Properties
│               │   │   └── AssemblyInfo.cs
│               │   ├── Web.Debug.config
│               │   ├── Web.Release.config
│               │   ├── Web.config
│               │   ├── bin
│               │   └── obj
│               │       └── Debug
│               │           ├── BreakpointTransmission.WebTester.dll
│               │           ├── BreakpointTransmission.WebTester.pdb
│               │           └── TempPE
│               ├── BreakpointTransmission.sln
│               ├── BreakpointTransmission.v11.suo
│               └── RouterInterface
│                   ├── Configuration
│                   │   ├── RoutingConfigurationSection.cs
│                   │   └── TypeConfigurationElement.cs
│                   ├── IHttpUploadFilePathRouting.cs
│                   ├── Properties
│                   │   ├── AssemblyInfo.cs
│                   │   ├── Resources.Designer.cs
│                   │   ├── Resources.resx
│                   │   ├── Settings.Designer.cs
│                   │   └── Settings.settings
│                   ├── RouterInterface.csproj
│                   ├── RoutingFactory.cs
│                   ├── bin
│                   │   ├── Debug
│                   │   │   ├── RouterInterface.dll
│                   │   │   └── RouterInterface.pdb
│                   │   └── Release
│                   └── obj
│                       └── Debug
│                           ├── DesignTimeResolveAssemblyReferencesInput.cache
│                           ├── RouterInterface.Properties.Resources.resources
│                           ├── RouterInterface.csproj.CoreCompileInputs.cache
│                           ├── RouterInterface.csproj.FileListAbsolute.txt
│                           ├── RouterInterface.csproj.GenerateResource.Cache
│                           ├── RouterInterface.csprojResolveAssemblyReference.cache
│                           ├── RouterInterface.dll
│                           ├── RouterInterface.pdb
│                           └── TempPE
└── 5t6t网_C#.NET上传大文件并断点续传包括控件源码和实例下载页.rar

46 directories, 107 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复