aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTommaso Stocchi <tommasostocchi@outlook.com>2021-06-03 17:45:22 +0200
committerTommaso Stocchi <tommasostocchi@outlook.com>2021-06-03 17:45:22 +0200
commit02a56d8cf73e6745f651fe230520182f0398fae3 (patch)
tree6165a85da212610d31209e7c436e13402411864e
parent2a72c33ba6ef257aff23c5281c9276d7a0258024 (diff)
Changed return type desc in GetParts() summary
-rw-r--r--Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs b/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
index 7b9f72efd..bcdf71b32 100644
--- a/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
+++ b/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
@@ -272,7 +272,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
/// Get the authorization header components.
/// </summary>
/// <param name="authorizationHeader">The authorization header.</param>
- /// <returns>string</returns>
+ /// <returns>Dictionary{System.StringSystem.String}.</returns>
public static Dictionary<string, string> GetParts(ReadOnlySpan<char> authorizationHeader)
{
var result = new Dictionary<string, string>();