├── .gitignore ├── DalSoft.RestClient.Examples ├── DalSoft.RestClient.Examples.csproj ├── ExamaplesController.cs ├── Models │ └── Repository.cs ├── Program.cs ├── Properties │ └── launchSettings.json └── Startup.cs ├── DalSoft.RestClient.Test.Integration ├── DalSoft.RestClient.Test.Integration.csproj ├── DalSoft.jpg ├── DynamicRestClientTests.cs ├── HandlersTests.cs ├── Properties │ └── AssemblyInfo.cs ├── RestClientExtensions.cs ├── RestClientFactoryTests.cs ├── RestClientTests.cs ├── StronglyTypedRestClientTests.cs └── TestModels │ ├── Address.cs │ ├── Comment.cs │ ├── Company.cs │ ├── Geo.cs │ └── User.cs ├── DalSoft.RestClient.Test.Unit ├── Commands │ └── HeadersCommandTests.cs ├── ConfigTests.cs ├── DalSoft.RestClient.Test.Unit.csproj ├── DalSoft.jpg ├── DependencyInjection │ ├── RestClientContainerTests.cs │ ├── RestClientFactoryConfigExtensionsTests.cs │ ├── RestClientFactoryConfigTests.cs │ ├── RestClientFactoryTests.cs │ └── ServiceCollectionExtensionsTests.cs ├── Extensions │ └── PipelineExtensionsTests.cs ├── Handlers │ ├── DefaultJsonHandlerTests.cs │ ├── FormUrlEncodedHandlerTests.cs │ ├── MultipartFormDataHandlerTests.cs │ ├── RetryHandlerTests.cs │ ├── TwitterHandlerTests.cs │ └── UnitTestHandlerTests.cs ├── HttpClientWrapperTests.cs ├── Properties │ └── AssemblyInfo.cs ├── RestClientExtensionTests.cs ├── RestClientTests.cs ├── TestData │ ├── Models │ │ └── User.cs │ └── Resources │ │ ├── RestApiResources.cs │ │ └── UsersResources.cs └── TestHelper.cs ├── DalSoft.RestClient.sln ├── DalSoft.RestClient ├── Assets │ ├── LICENSE │ └── icon.png ├── AuthenticationSchemes.cs ├── Commands │ ├── Command.cs │ ├── CommandFactory.cs │ ├── EscapedResourceCommand.cs │ ├── HeadersCommand.cs │ ├── HttpMethodCommand.cs │ ├── QueryCommand.cs │ └── ResourceCommand.cs ├── Config.cs ├── DalSoft.RestClient.csproj ├── DependencyInjection │ ├── HttpClientHandlerWrapper.cs │ ├── IRestClientFactory.cs │ ├── RestClientContainer.cs │ ├── RestClientFactory.cs │ ├── RestClientFactoryConfig.cs │ ├── RestClientFactoryConfigExtensions.cs │ └── ServiceCollectionExtensions.cs ├── Extensions │ ├── Json.cs │ └── Object.cs ├── Handlers │ ├── CookieHandler.cs │ ├── DefaultJsonHandler.cs │ ├── DelegatingHandlerWrapper.cs │ ├── FormUrlEncodedHandler.cs │ ├── HttpMessageHandlerToDelegatingHandler.cs │ ├── MultipartFormDataHandler.cs │ ├── RetryHandler.cs │ ├── TwitterHandler.cs │ └── UnitTestHandler.cs ├── Headers.cs ├── HttpClientWrapper.cs ├── HttpMethods.cs ├── IHttpClientWrapper.cs ├── IRestClient.cs ├── MemberAccessWrapper.cs ├── PipelineExtensions.cs ├── Properties │ └── AssemblyInfo.cs ├── RestClient.cs ├── RestClientExtensions.cs ├── RestClientResponseObject.cs └── StronglyTypedMemberAccessWrapper.cs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/.gitignore -------------------------------------------------------------------------------- /DalSoft.RestClient.Examples/DalSoft.RestClient.Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Examples/DalSoft.RestClient.Examples.csproj -------------------------------------------------------------------------------- /DalSoft.RestClient.Examples/ExamaplesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Examples/ExamaplesController.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Examples/Models/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Examples/Models/Repository.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Examples/Program.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Examples/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Examples/Properties/launchSettings.json -------------------------------------------------------------------------------- /DalSoft.RestClient.Examples/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Examples/Startup.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/DalSoft.RestClient.Test.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/DalSoft.RestClient.Test.Integration.csproj -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/DalSoft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/DalSoft.jpg -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/DynamicRestClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/DynamicRestClientTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/HandlersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/HandlersTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/RestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/RestClientExtensions.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/RestClientFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/RestClientFactoryTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/RestClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/RestClientTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/StronglyTypedRestClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/StronglyTypedRestClientTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/TestModels/Address.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/TestModels/Address.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/TestModels/Comment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/TestModels/Comment.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/TestModels/Company.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/TestModels/Company.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/TestModels/Geo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/TestModels/Geo.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Integration/TestModels/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Integration/TestModels/User.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Commands/HeadersCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Commands/HeadersCommandTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/ConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/ConfigTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DalSoft.RestClient.Test.Unit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DalSoft.RestClient.Test.Unit.csproj -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DalSoft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DalSoft.jpg -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientContainerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientContainerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientFactoryConfigExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientFactoryConfigExtensionsTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientFactoryConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientFactoryConfigTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DependencyInjection/RestClientFactoryTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/DependencyInjection/ServiceCollectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/DependencyInjection/ServiceCollectionExtensionsTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Extensions/PipelineExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Extensions/PipelineExtensionsTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Handlers/DefaultJsonHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Handlers/DefaultJsonHandlerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Handlers/FormUrlEncodedHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Handlers/FormUrlEncodedHandlerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Handlers/MultipartFormDataHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Handlers/MultipartFormDataHandlerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Handlers/RetryHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Handlers/RetryHandlerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Handlers/TwitterHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Handlers/TwitterHandlerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Handlers/UnitTestHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Handlers/UnitTestHandlerTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/HttpClientWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/HttpClientWrapperTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/RestClientExtensionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/RestClientExtensionTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/RestClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/RestClientTests.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/TestData/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/TestData/Models/User.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/TestData/Resources/RestApiResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/TestData/Resources/RestApiResources.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/TestData/Resources/UsersResources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/TestData/Resources/UsersResources.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.Test.Unit/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.Test.Unit/TestHelper.cs -------------------------------------------------------------------------------- /DalSoft.RestClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient.sln -------------------------------------------------------------------------------- /DalSoft.RestClient/Assets/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Assets/LICENSE -------------------------------------------------------------------------------- /DalSoft.RestClient/Assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Assets/icon.png -------------------------------------------------------------------------------- /DalSoft.RestClient/AuthenticationSchemes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/AuthenticationSchemes.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/Command.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/CommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/CommandFactory.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/EscapedResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/EscapedResourceCommand.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/HeadersCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/HeadersCommand.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/HttpMethodCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/HttpMethodCommand.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/QueryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/QueryCommand.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Commands/ResourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Commands/ResourceCommand.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Config.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DalSoft.RestClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DalSoft.RestClient.csproj -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/HttpClientHandlerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/HttpClientHandlerWrapper.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/IRestClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/IRestClientFactory.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/RestClientContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/RestClientContainer.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/RestClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/RestClientFactory.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/RestClientFactoryConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/RestClientFactoryConfig.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/RestClientFactoryConfigExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/RestClientFactoryConfigExtensions.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Extensions/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Extensions/Json.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Extensions/Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Extensions/Object.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/CookieHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/CookieHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/DefaultJsonHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/DefaultJsonHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/DelegatingHandlerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/DelegatingHandlerWrapper.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/FormUrlEncodedHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/FormUrlEncodedHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/HttpMessageHandlerToDelegatingHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/HttpMessageHandlerToDelegatingHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/MultipartFormDataHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/MultipartFormDataHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/RetryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/RetryHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/TwitterHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/TwitterHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Handlers/UnitTestHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Handlers/UnitTestHandler.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Headers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Headers.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/HttpClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/HttpClientWrapper.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/HttpMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/HttpMethods.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/IHttpClientWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/IHttpClientWrapper.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/IRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/IRestClient.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/MemberAccessWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/MemberAccessWrapper.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/PipelineExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/PipelineExtensions.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/RestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/RestClient.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/RestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/RestClientExtensions.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/RestClientResponseObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/RestClientResponseObject.cs -------------------------------------------------------------------------------- /DalSoft.RestClient/StronglyTypedMemberAccessWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/DalSoft.RestClient/StronglyTypedMemberAccessWrapper.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DalSoft/DalSoft.RestClient/HEAD/README.md --------------------------------------------------------------------------------