-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
924 additions
and
172 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
namespace KCNLanzouDirectLink | ||
{ | ||
public enum DownloadState | ||
{ | ||
/// <summary> | ||
/// 操作成功完成。 | ||
/// </summary> | ||
Success, | ||
|
||
/// <summary> | ||
/// 未提供有效的分享链接。 | ||
/// </summary> | ||
UrlNotProvided, | ||
|
||
/// <summary> | ||
/// 无法获取网页内容。分享链接无效? | ||
/// </summary> | ||
HtmlContentNotFound, | ||
|
||
/// <summary> | ||
/// 无法解析加密信息。分享链接无效或密钥错误? | ||
/// </summary> | ||
PostsignNotFound, | ||
|
||
/// <summary> | ||
/// 无法解析中间链接。 | ||
/// </summary> | ||
IntermediateUrlNotFound, | ||
|
||
/// <summary> | ||
/// 无法获取最终的直链地址。 | ||
/// </summary> | ||
FinalUrlNotFound, | ||
|
||
/// <summary> | ||
/// 未知错误,操作未成功完成。 | ||
/// </summary> | ||
Error | ||
} | ||
} |
Oops, something went wrong.