mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-14 01:25:38 -05:00
19 lines
286 B
C#
19 lines
286 B
C#
namespace FeedCenter;
|
|
|
|
public enum FeedReadResult
|
|
{
|
|
Success,
|
|
NotModified,
|
|
NotDue,
|
|
UnknownError,
|
|
InvalidXml,
|
|
NotEnabled,
|
|
Unauthorized,
|
|
NoResponse,
|
|
NotFound,
|
|
Timeout,
|
|
ConnectionFailed,
|
|
ServerError,
|
|
Moved,
|
|
TemporarilyUnavailable
|
|
} |