├── .appveyor.yml ├── .gitignore ├── LICENSE ├── NOTICE ├── PartialResponse.sln ├── PartialResponse.snk ├── README.md ├── nuget.config ├── samples └── PartialResponse.Samples │ ├── FormatterController.cs │ ├── HttpSelfHostDemo.cs │ ├── OwinHostDemo.cs │ ├── PartialResponse.Samples.csproj │ ├── Program.cs │ └── stylecop.ruleset ├── src └── PartialResponse │ ├── CloneableExtensions.cs │ ├── Common │ ├── HttpRequestMessageExtensions.cs │ └── TaskHelpers.cs │ ├── Formatting │ ├── JsonContractResolver.cs │ ├── JsonSerializerExtensions.cs │ ├── MediaTypeConstants.cs │ ├── PartialJsonMediaTypeFormatter.cs │ ├── PathUtilities.cs │ └── SerializerContext.cs │ ├── FormattingUtilities.cs │ ├── PartialJsonActionFilter.cs │ └── PartialResponse.csproj ├── stylecop.json └── test └── PartialResponse.Tests ├── JsonSerializerExtensionsTests.cs ├── PartialJsonActionFilterTests.cs ├── PartialJsonMediaTypeFormatterTests.cs ├── PartialResponse.Tests.csproj └── stylecop.ruleset /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/NOTICE -------------------------------------------------------------------------------- /PartialResponse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/PartialResponse.sln -------------------------------------------------------------------------------- /PartialResponse.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/PartialResponse.snk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/README.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/nuget.config -------------------------------------------------------------------------------- /samples/PartialResponse.Samples/FormatterController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/samples/PartialResponse.Samples/FormatterController.cs -------------------------------------------------------------------------------- /samples/PartialResponse.Samples/HttpSelfHostDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/samples/PartialResponse.Samples/HttpSelfHostDemo.cs -------------------------------------------------------------------------------- /samples/PartialResponse.Samples/OwinHostDemo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/samples/PartialResponse.Samples/OwinHostDemo.cs -------------------------------------------------------------------------------- /samples/PartialResponse.Samples/PartialResponse.Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/samples/PartialResponse.Samples/PartialResponse.Samples.csproj -------------------------------------------------------------------------------- /samples/PartialResponse.Samples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/samples/PartialResponse.Samples/Program.cs -------------------------------------------------------------------------------- /samples/PartialResponse.Samples/stylecop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/samples/PartialResponse.Samples/stylecop.ruleset -------------------------------------------------------------------------------- /src/PartialResponse/CloneableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/CloneableExtensions.cs -------------------------------------------------------------------------------- /src/PartialResponse/Common/HttpRequestMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Common/HttpRequestMessageExtensions.cs -------------------------------------------------------------------------------- /src/PartialResponse/Common/TaskHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Common/TaskHelpers.cs -------------------------------------------------------------------------------- /src/PartialResponse/Formatting/JsonContractResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Formatting/JsonContractResolver.cs -------------------------------------------------------------------------------- /src/PartialResponse/Formatting/JsonSerializerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Formatting/JsonSerializerExtensions.cs -------------------------------------------------------------------------------- /src/PartialResponse/Formatting/MediaTypeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Formatting/MediaTypeConstants.cs -------------------------------------------------------------------------------- /src/PartialResponse/Formatting/PartialJsonMediaTypeFormatter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Formatting/PartialJsonMediaTypeFormatter.cs -------------------------------------------------------------------------------- /src/PartialResponse/Formatting/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Formatting/PathUtilities.cs -------------------------------------------------------------------------------- /src/PartialResponse/Formatting/SerializerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/Formatting/SerializerContext.cs -------------------------------------------------------------------------------- /src/PartialResponse/FormattingUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/FormattingUtilities.cs -------------------------------------------------------------------------------- /src/PartialResponse/PartialJsonActionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/PartialJsonActionFilter.cs -------------------------------------------------------------------------------- /src/PartialResponse/PartialResponse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/src/PartialResponse/PartialResponse.csproj -------------------------------------------------------------------------------- /stylecop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/stylecop.json -------------------------------------------------------------------------------- /test/PartialResponse.Tests/JsonSerializerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/test/PartialResponse.Tests/JsonSerializerExtensionsTests.cs -------------------------------------------------------------------------------- /test/PartialResponse.Tests/PartialJsonActionFilterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/test/PartialResponse.Tests/PartialJsonActionFilterTests.cs -------------------------------------------------------------------------------- /test/PartialResponse.Tests/PartialJsonMediaTypeFormatterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/test/PartialResponse.Tests/PartialJsonMediaTypeFormatterTests.cs -------------------------------------------------------------------------------- /test/PartialResponse.Tests/PartialResponse.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/test/PartialResponse.Tests/PartialResponse.Tests.csproj -------------------------------------------------------------------------------- /test/PartialResponse.Tests/stylecop.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotarj/PartialResponse/HEAD/test/PartialResponse.Tests/stylecop.ruleset --------------------------------------------------------------------------------