blob: a28f422a2bf4e2ee0d2e1bdd8427fc25c6f4ff1a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
namespace MediaBrowser.Model.Dlna
{
/// <summary>
/// The playback error code.
/// </summary>
public enum PlaybackErrorCode
{
/// <summary>
/// Playback of the item is not allowed.
/// </summary>
NotAllowed = 0,
/// <summary>
/// No stream compatible with the device profile was found.
/// </summary>
NoCompatibleStream = 1,
/// <summary>
/// The rate limit has been exceeded.
/// </summary>
RateLimitExceeded = 2
}
}
|