2020-08-20 15:01:04 +00:00
|
|
|
#pragma warning disable CS1591
|
2021-02-20 22:13:04 +00:00
|
|
|
|
2020-08-20 15:01:04 +00:00
|
|
|
namespace Emby.Dlna.PlayTo
|
|
|
|
{
|
2022-03-08 15:12:03 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Core of the AVTransport service. It defines the conceptually top-
|
|
|
|
/// level state of the transport, for example, whether it is playing, recording, etc.
|
|
|
|
/// </summary>
|
2020-08-20 15:01:04 +00:00
|
|
|
public enum TransportState
|
|
|
|
{
|
2022-03-08 15:12:03 +00:00
|
|
|
STOPPED,
|
|
|
|
PLAYING,
|
|
|
|
TRANSITIONING,
|
|
|
|
PAUSED_PLAYBACK
|
2020-08-20 15:01:04 +00:00
|
|
|
}
|
|
|
|
}
|