├── .ci └── RunTests.sh ├── .gitattributes ├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── .travis.yml ├── AssemblyCommon.cs ├── LICENSE.txt ├── README.md ├── uhttpsharp-demo ├── .gitignore ├── Controllers │ └── DemoController.cs ├── Handlers │ ├── AboutHandler.cs │ ├── ErrorHandler.cs │ ├── ExceptionHandler.cs │ ├── IndexHandler.cs │ └── TimingHandler.cs ├── HttpException.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SomeRestController.cs ├── StringsRestController.cs ├── app.config ├── packages.config └── uhttpsharp.Demo.csproj ├── uhttpsharp.6.0.ReSharper ├── uhttpsharp.Tests ├── HttpMethodProviderCacheTests.cs ├── HttpMethodProviderTests.cs ├── Properties │ └── AssemblyInfo.cs ├── packages.config └── uhttpsharp.Tests.csproj ├── uhttpsharp.dll.nuspec ├── uhttpsharp.sln ├── uhttpsharp.sln.DotSettings.user └── uhttpsharp ├── .gitignore ├── App_Packages └── LibLog.3.1 │ └── LibLog.cs ├── Attributes ├── HttpMethodAttribute.cs ├── IModelBinding.cs └── NullableAttribute.cs ├── Clients ├── ClientSslDecoerator.cs ├── IClient.cs └── TcpClientAdapter.cs ├── Controllers ├── ErrorContainer.cs ├── IController.cs ├── IControllerResponse.cs ├── IErrorContainer.cs ├── IPipeline.cs └── IRequestParameter.cs ├── Handlers ├── BasicAuthenticationHandler.cs ├── ClassRouter.cs ├── Compression │ ├── CompressedResponse.cs │ ├── CompressionHandler.cs │ ├── DeflateCompressor.cs │ ├── GZipCompressor.cs │ └── ICompressor.cs ├── ControllerHandler.cs ├── FileHandler.cs ├── GZipHandler.cs~RF51dd35.TMP ├── HttpRouter.cs ├── IResponseProvider.cs ├── IRestController.cs ├── IView.cs ├── JsonResponseProvider.cs ├── RestHandler.cs └── SessionHandler.cs ├── Headers ├── CompositeHttpHeaders.cs ├── EmptyHttpHeaders.cs ├── HttpHeaders.cs ├── HttpHeadersDebuggerProxy.cs ├── HttpHeadersExtensions.cs ├── IHttpHeaders.cs └── QueryStringHttpHeaders.cs ├── HttpClient.cs ├── HttpContext.cs ├── HttpMethodProvider.cs ├── HttpMethodProviderCache.cs ├── HttpMethods.cs ├── HttpRequest.cs ├── HttpRequestHandler.cs ├── HttpResponse.cs ├── HttpResponseCode.cs ├── HttpServer.cs ├── HttpServerExtensions.cs ├── IHttpContext.cs ├── IHttpMethodProvider.cs ├── LimitedStream.cs ├── Listeners ├── IHttpListener.cs ├── SslListenerDecoerator.cs └── TcpListenerAdapter.cs ├── ModelBinders ├── IModelBinder.cs ├── JsonModelBinder.cs └── ModelBinder.cs ├── Properties └── AssemblyInfo.cs ├── RequestProviders ├── HttpRequestMethodDecorator.cs ├── HttpRequestProvider.cs ├── HttpRequestProviderMethodOverrideDecorator.cs ├── IHttpRequestProvider.cs └── IStreamReader.cs ├── TaskFactoryExtensions.cs ├── packages.config └── uhttpsharp.csproj /.ci/RunTests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.ci/RunTests.sh -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/.travis.yml -------------------------------------------------------------------------------- /AssemblyCommon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/AssemblyCommon.cs -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/README.md -------------------------------------------------------------------------------- /uhttpsharp-demo/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | -------------------------------------------------------------------------------- /uhttpsharp-demo/Controllers/DemoController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Controllers/DemoController.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Handlers/AboutHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Handlers/AboutHandler.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Handlers/ErrorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Handlers/ErrorHandler.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Handlers/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Handlers/ExceptionHandler.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Handlers/IndexHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Handlers/IndexHandler.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Handlers/TimingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Handlers/TimingHandler.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/HttpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/HttpException.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Program.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/SomeRestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/SomeRestController.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/StringsRestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/StringsRestController.cs -------------------------------------------------------------------------------- /uhttpsharp-demo/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/app.config -------------------------------------------------------------------------------- /uhttpsharp-demo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/packages.config -------------------------------------------------------------------------------- /uhttpsharp-demo/uhttpsharp.Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp-demo/uhttpsharp.Demo.csproj -------------------------------------------------------------------------------- /uhttpsharp.6.0.ReSharper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.6.0.ReSharper -------------------------------------------------------------------------------- /uhttpsharp.Tests/HttpMethodProviderCacheTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.Tests/HttpMethodProviderCacheTests.cs -------------------------------------------------------------------------------- /uhttpsharp.Tests/HttpMethodProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.Tests/HttpMethodProviderTests.cs -------------------------------------------------------------------------------- /uhttpsharp.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /uhttpsharp.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.Tests/packages.config -------------------------------------------------------------------------------- /uhttpsharp.Tests/uhttpsharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.Tests/uhttpsharp.Tests.csproj -------------------------------------------------------------------------------- /uhttpsharp.dll.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.dll.nuspec -------------------------------------------------------------------------------- /uhttpsharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.sln -------------------------------------------------------------------------------- /uhttpsharp.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp.sln.DotSettings.user -------------------------------------------------------------------------------- /uhttpsharp/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | -------------------------------------------------------------------------------- /uhttpsharp/App_Packages/LibLog.3.1/LibLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/App_Packages/LibLog.3.1/LibLog.cs -------------------------------------------------------------------------------- /uhttpsharp/Attributes/HttpMethodAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Attributes/HttpMethodAttribute.cs -------------------------------------------------------------------------------- /uhttpsharp/Attributes/IModelBinding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Attributes/IModelBinding.cs -------------------------------------------------------------------------------- /uhttpsharp/Attributes/NullableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Attributes/NullableAttribute.cs -------------------------------------------------------------------------------- /uhttpsharp/Clients/ClientSslDecoerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Clients/ClientSslDecoerator.cs -------------------------------------------------------------------------------- /uhttpsharp/Clients/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Clients/IClient.cs -------------------------------------------------------------------------------- /uhttpsharp/Clients/TcpClientAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Clients/TcpClientAdapter.cs -------------------------------------------------------------------------------- /uhttpsharp/Controllers/ErrorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Controllers/ErrorContainer.cs -------------------------------------------------------------------------------- /uhttpsharp/Controllers/IController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Controllers/IController.cs -------------------------------------------------------------------------------- /uhttpsharp/Controllers/IControllerResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Controllers/IControllerResponse.cs -------------------------------------------------------------------------------- /uhttpsharp/Controllers/IErrorContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Controllers/IErrorContainer.cs -------------------------------------------------------------------------------- /uhttpsharp/Controllers/IPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Controllers/IPipeline.cs -------------------------------------------------------------------------------- /uhttpsharp/Controllers/IRequestParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Controllers/IRequestParameter.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/BasicAuthenticationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/BasicAuthenticationHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/ClassRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/ClassRouter.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/Compression/CompressedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/Compression/CompressedResponse.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/Compression/CompressionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/Compression/CompressionHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/Compression/DeflateCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/Compression/DeflateCompressor.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/Compression/GZipCompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/Compression/GZipCompressor.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/Compression/ICompressor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/Compression/ICompressor.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/ControllerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/ControllerHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/FileHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/FileHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/GZipHandler.cs~RF51dd35.TMP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/GZipHandler.cs~RF51dd35.TMP -------------------------------------------------------------------------------- /uhttpsharp/Handlers/HttpRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/HttpRouter.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/IResponseProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/IResponseProvider.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/IRestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/IRestController.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/IView.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/JsonResponseProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/JsonResponseProvider.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/RestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/RestHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/Handlers/SessionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Handlers/SessionHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/CompositeHttpHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/CompositeHttpHeaders.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/EmptyHttpHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/EmptyHttpHeaders.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/HttpHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/HttpHeaders.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/HttpHeadersDebuggerProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/HttpHeadersDebuggerProxy.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/HttpHeadersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/HttpHeadersExtensions.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/IHttpHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/IHttpHeaders.cs -------------------------------------------------------------------------------- /uhttpsharp/Headers/QueryStringHttpHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Headers/QueryStringHttpHeaders.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpClient.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpContext.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpMethodProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpMethodProvider.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpMethodProviderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpMethodProviderCache.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpMethods.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpRequest.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpRequestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpRequestHandler.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpResponse.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpResponseCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpResponseCode.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpServer.cs -------------------------------------------------------------------------------- /uhttpsharp/HttpServerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/HttpServerExtensions.cs -------------------------------------------------------------------------------- /uhttpsharp/IHttpContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/IHttpContext.cs -------------------------------------------------------------------------------- /uhttpsharp/IHttpMethodProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/IHttpMethodProvider.cs -------------------------------------------------------------------------------- /uhttpsharp/LimitedStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/LimitedStream.cs -------------------------------------------------------------------------------- /uhttpsharp/Listeners/IHttpListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Listeners/IHttpListener.cs -------------------------------------------------------------------------------- /uhttpsharp/Listeners/SslListenerDecoerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Listeners/SslListenerDecoerator.cs -------------------------------------------------------------------------------- /uhttpsharp/Listeners/TcpListenerAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Listeners/TcpListenerAdapter.cs -------------------------------------------------------------------------------- /uhttpsharp/ModelBinders/IModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/ModelBinders/IModelBinder.cs -------------------------------------------------------------------------------- /uhttpsharp/ModelBinders/JsonModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/ModelBinders/JsonModelBinder.cs -------------------------------------------------------------------------------- /uhttpsharp/ModelBinders/ModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/ModelBinders/ModelBinder.cs -------------------------------------------------------------------------------- /uhttpsharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /uhttpsharp/RequestProviders/HttpRequestMethodDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/RequestProviders/HttpRequestMethodDecorator.cs -------------------------------------------------------------------------------- /uhttpsharp/RequestProviders/HttpRequestProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/RequestProviders/HttpRequestProvider.cs -------------------------------------------------------------------------------- /uhttpsharp/RequestProviders/HttpRequestProviderMethodOverrideDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/RequestProviders/HttpRequestProviderMethodOverrideDecorator.cs -------------------------------------------------------------------------------- /uhttpsharp/RequestProviders/IHttpRequestProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/RequestProviders/IHttpRequestProvider.cs -------------------------------------------------------------------------------- /uhttpsharp/RequestProviders/IStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/RequestProviders/IStreamReader.cs -------------------------------------------------------------------------------- /uhttpsharp/TaskFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/TaskFactoryExtensions.cs -------------------------------------------------------------------------------- /uhttpsharp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/packages.config -------------------------------------------------------------------------------- /uhttpsharp/uhttpsharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Sharp/uHttpSharp/HEAD/uhttpsharp/uhttpsharp.csproj --------------------------------------------------------------------------------