Add XML docs to small session model types and remove CS1591 suppressions

This commit is contained in:
mbastian77
2026-07-15 16:03:56 +02:00
parent b6882c86dc
commit 5cbafa566d
5 changed files with 58 additions and 8 deletions
+14 -2
View File
@@ -1,11 +1,23 @@
#pragma warning disable CS1591
namespace MediaBrowser.Model.Session
{
/// <summary>
/// The play method.
/// </summary>
public enum PlayMethod
{
/// <summary>
/// The media is transcoded before it is sent to the client.
/// </summary>
Transcode = 0,
/// <summary>
/// The media is remuxed into a compatible container but the streams are not re-encoded.
/// </summary>
DirectStream = 1,
/// <summary>
/// The media is sent to the client as-is.
/// </summary>
DirectPlay = 2
}
}