diff options
Diffstat (limited to 'MediaBrowser.Networking/HttpServer/ServerFactory.cs')
| -rw-r--r-- | MediaBrowser.Networking/HttpServer/ServerFactory.cs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/MediaBrowser.Networking/HttpServer/ServerFactory.cs b/MediaBrowser.Networking/HttpServer/ServerFactory.cs deleted file mode 100644 index 716fd450a..000000000 --- a/MediaBrowser.Networking/HttpServer/ServerFactory.cs +++ /dev/null @@ -1,27 +0,0 @@ -using MediaBrowser.Common.Kernel; -using MediaBrowser.Common.Net; -using MediaBrowser.Model.Logging; -using MediaBrowser.Model.Serialization; - -namespace MediaBrowser.Networking.HttpServer -{ - /// <summary> - /// Class ServerFactory - /// </summary> - public static class ServerFactory - { - /// <summary> - /// Creates the server. - /// </summary> - /// <param name="applicationHost">The application host.</param> - /// <param name="protobufSerializer">The protobuf serializer.</param> - /// <param name="logger">The logger.</param> - /// <param name="serverName">Name of the server.</param> - /// <param name="defaultRedirectpath">The default redirectpath.</param> - /// <returns>IHttpServer.</returns> - public static IHttpServer CreateServer(IApplicationHost applicationHost, IProtobufSerializer protobufSerializer, ILogger logger, string serverName, string defaultRedirectpath) - { - return new HttpServer(applicationHost, protobufSerializer, logger, serverName, defaultRedirectpath); - } - } -} |
