aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-12-10 16:22:03 +0100
committerGitHub <noreply@github.com>2019-12-10 16:22:03 +0100
commitaffb58ef9e11f7f14192c76074b1199604f6bd67 (patch)
treeae95757f09c725d470791fbaf36b6015c58a898d /Emby.Server.Implementations/HttpServer
parent42ffddc26932bcf2da762bf4fe1ec4bdc42e8166 (diff)
Apply suggestions from code review
Co-Authored-By: dkanada <dkanada@users.noreply.github.com>
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
-rw-r--r--Emby.Server.Implementations/HttpServer/HttpResultFactory.cs2
-rw-r--r--Emby.Server.Implementations/HttpServer/StreamWriter.cs2
-rw-r--r--Emby.Server.Implementations/HttpServer/WebSocketConnection.cs6
3 files changed, 5 insertions, 5 deletions
diff --git a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
index f9eb3a897..a62b4e7af 100644
--- a/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
+++ b/Emby.Server.Implementations/HttpServer/HttpResultFactory.cs
@@ -29,7 +29,7 @@ namespace Emby.Server.Implementations.HttpServer
public class HttpResultFactory : IHttpResultFactory
{
/// <summary>
- /// The _logger.
+ /// The logger.
/// </summary>
private readonly ILogger _logger;
private readonly IFileSystem _fileSystem;
diff --git a/Emby.Server.Implementations/HttpServer/StreamWriter.cs b/Emby.Server.Implementations/HttpServer/StreamWriter.cs
index eda236028..5afc51dbc 100644
--- a/Emby.Server.Implementations/HttpServer/StreamWriter.cs
+++ b/Emby.Server.Implementations/HttpServer/StreamWriter.cs
@@ -15,7 +15,7 @@ namespace Emby.Server.Implementations.HttpServer
public class StreamWriter : IAsyncStreamWriter, IHasHeaders
{
/// <summary>
- /// The _options.
+ /// The options.
/// </summary>
private readonly IDictionary<string, string> _options = new Dictionary<string, string>();
diff --git a/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs b/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs
index 5d657b8a7..2292d86a4 100644
--- a/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs
+++ b/Emby.Server.Implementations/HttpServer/WebSocketConnection.cs
@@ -24,12 +24,12 @@ namespace Emby.Server.Implementations.HttpServer
private readonly ILogger _logger;
/// <summary>
- /// The _json serializer.
+ /// The json serializer.
/// </summary>
private readonly IJsonSerializer _jsonSerializer;
/// <summary>
- /// The _socket.
+ /// The socket.
/// </summary>
private readonly IWebSocket _socket;
@@ -78,7 +78,7 @@ namespace Emby.Server.Implementations.HttpServer
public event EventHandler<EventArgs> Closed;
/// <summary>
- /// Gets or sets the _remote end point.
+ /// Gets or sets the remote end point.
/// </summary>
public string RemoteEndPoint { get; private set; }