jellyfin/MediaBrowser.Server.Implementations/HttpServer/SocketSharp/Extensions.cs

29 lines
825 B
C#
Raw Normal View History

2015-01-03 19:38:22 +00:00
using MediaBrowser.Model.Logging;
using SocketHttpListener.Net;
using System;
2014-07-19 01:28:40 +00:00
namespace MediaBrowser.Server.Implementations.HttpServer.SocketSharp
{
public static class Extensions
{
public static string GetOperationName(this HttpListenerRequest request)
{
return request.Url.Segments[request.Url.Segments.Length - 1];
}
public static void CloseOutputStream(this HttpListenerResponse response, ILogger logger)
{
try
{
response.OutputStream.Flush();
response.OutputStream.Close();
response.Close();
}
catch (Exception ex)
{
logger.ErrorException("Error in HttpListenerResponseWrapper: " + ex.Message, ex);
}
}
}
}