aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/IHasCacheKey.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2026-07-17 13:53:27 +0200
committerGitHub <noreply@github.com>2026-07-17 13:53:27 +0200
commit4d1dd42420ccc5abad88d852d8599aeafdd54ded (patch)
tree6274c0720a3408c222b6b97f84f0d1c3d696d366 /MediaBrowser.Controller/Channels/IHasCacheKey.cs
parent8eb0ba60c1dd32378413e4eb8d1a7264f8859331 (diff)
parent0d3cf0169e198b51d90f106317a87116ac5e179e (diff)
Merge pull request #17343 from mbastian77/docs/channels-xml-docs
Diffstat (limited to 'MediaBrowser.Controller/Channels/IHasCacheKey.cs')
-rw-r--r--MediaBrowser.Controller/Channels/IHasCacheKey.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Channels/IHasCacheKey.cs b/MediaBrowser.Controller/Channels/IHasCacheKey.cs
index 7d5207c34a..4cdda38bd9 100644
--- a/MediaBrowser.Controller/Channels/IHasCacheKey.cs
+++ b/MediaBrowser.Controller/Channels/IHasCacheKey.cs
@@ -1,14 +1,15 @@
-#pragma warning disable CS1591
-
namespace MediaBrowser.Controller.Channels
{
+ /// <summary>
+ /// Interface for channels that provide a cache key.
+ /// </summary>
public interface IHasCacheKey
{
/// <summary>
/// Gets the cache key.
/// </summary>
/// <param name="userId">The user identifier.</param>
- /// <returns>System.String.</returns>
+ /// <returns>The cache key.</returns>
string? GetCacheKey(string? userId);
}
}