Extensions.cs 320 B

123456789101112
  1. using SocketHttpListener.Net;
  2. namespace Emby.Server.Implementations.HttpServer.SocketSharp
  3. {
  4. public static class Extensions
  5. {
  6. public static string GetOperationName(this HttpListenerRequest request)
  7. {
  8. return request.Url.Segments[request.Url.Segments.Length - 1];
  9. }
  10. }
  11. }