mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
- Modernize old async code - Update to .NET 10 - Adjust namespace - Bypass update check when debugging
20 lines
313 B
C#
20 lines
313 B
C#
namespace FeedCenter.Feeds;
|
|
|
|
public enum FeedReadResult
|
|
{
|
|
Success,
|
|
NotModified,
|
|
NotDue,
|
|
UnknownError,
|
|
InvalidXml,
|
|
NotEnabled,
|
|
Unauthorized,
|
|
NoResponse,
|
|
NotFound,
|
|
Timeout,
|
|
ConnectionFailed,
|
|
ServerError,
|
|
Moved,
|
|
TemporarilyUnavailable,
|
|
TooManyRequests
|
|
} |