├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── dotnet.yml │ ├── merge.yml │ └── stale.yml ├── .gitignore ├── Directory.Packages.props ├── FluentRest.slnx ├── LICENSE ├── README.md ├── coverlet.runsettings ├── logo.png ├── src ├── Directory.Build.props ├── FluentRest.Factory │ ├── FluentClientFactory.cs │ ├── FluentClientOptions.cs │ ├── FluentExtensions.cs │ ├── FluentRest.Factory.csproj │ ├── FluentTypedHttpClientFactory.cs │ └── IFluentClientFactory.cs ├── FluentRest.Fake │ ├── FakeContainerBuilder.cs │ ├── FakeContentBuilder.cs │ ├── FakeMessageHandler.cs │ ├── FakeMessageStore.cs │ ├── FakeResponseBuilder.cs │ ├── FakeResponseContainer.cs │ ├── FakeResponseMessage.cs │ ├── FakeResponseMode.cs │ ├── FileMessageStore.cs │ ├── FluentRest.Fake.csproj │ ├── IFakeMessageStore.cs │ └── MemoryMessageStore.cs ├── FluentRest.NewtonsoftJson │ ├── FluentRest.NewtonsoftJson.csproj │ └── NewtonsoftJsonSerializer.cs └── FluentRest │ ├── CodeAnalysis │ └── NullableAttributes.cs │ ├── ContentSerializer.cs │ ├── DictionaryExtensions.cs │ ├── FluentClient.cs │ ├── FluentClientExtensions.cs │ ├── FluentDispatcher.cs │ ├── FluentProperties.cs │ ├── FluentRest.csproj │ ├── FormBuilder.cs │ ├── HeaderBuilder.cs │ ├── HttpClientExtensions.cs │ ├── HttpMessageExtensions.cs │ ├── HttpRequestHeaders.cs │ ├── HttpResponseHeaders.cs │ ├── IContentSerializer.cs │ ├── IFluentClient.cs │ ├── JsonContentSerializer.cs │ ├── PostBuilder.cs │ ├── ProblemDetails.cs │ ├── ProblemDetailsJsonContext.cs │ ├── ProblemException.cs │ ├── QueryBuilder.cs │ ├── RequestBuilder.cs │ ├── RequestExtensions.cs │ ├── SendBuilder.cs │ ├── StringBuilderCache.cs │ └── UrlBuilder.cs └── test ├── FluentRest.Factory.Tests ├── FactoryTests.cs └── FluentRest.Factory.Tests.csproj ├── FluentRest.Fake.Tests ├── Data │ ├── 8A26261B3D3E0A1D9169DBA1DA808CC73C0254FD.data │ └── 8A26261B3D3E0A1D9169DBA1DA808CC73C0254FD.json ├── EchoClient.cs ├── EchoResult.cs ├── FileMessageStoreTests.cs ├── FluentRest.Fake.Tests.csproj └── MemoryStoreTests.cs └── FluentRest.Tests ├── EchoResult.cs ├── FluentEchoTests.cs ├── FluentRest.Tests.csproj ├── GitHub ├── GitHubFactoryTests.cs ├── GitHubTests.cs ├── GithubClient.cs ├── Models │ ├── Issue.cs │ ├── Label.cs │ ├── Milestone.cs │ ├── Organization.cs │ ├── Owner.cs │ ├── PullRequest.cs │ ├── Repository.cs │ └── User.cs └── RetryHandler.cs ├── Google └── Maps │ ├── GoogleTests.cs │ └── Models │ ├── AddressComponent.cs │ ├── GeocodeResponse.cs │ ├── GeocodeResult.cs │ ├── Geometry.cs │ ├── Location.cs │ └── Viewport.cs ├── HostCollection.cs ├── HostFixture.cs ├── HostTestBase.cs ├── HttpClientEchoTests.cs ├── ProblemDetailsTests.cs ├── QueryBuilderTest.cs ├── UrlBuilderTests.cs └── UserData.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: loresoft 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /FluentRest.slnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/FluentRest.slnx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/README.md -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/logo.png -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/FluentRest.Factory/FluentClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Factory/FluentClientFactory.cs -------------------------------------------------------------------------------- /src/FluentRest.Factory/FluentClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Factory/FluentClientOptions.cs -------------------------------------------------------------------------------- /src/FluentRest.Factory/FluentExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Factory/FluentExtensions.cs -------------------------------------------------------------------------------- /src/FluentRest.Factory/FluentRest.Factory.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Factory/FluentRest.Factory.csproj -------------------------------------------------------------------------------- /src/FluentRest.Factory/FluentTypedHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Factory/FluentTypedHttpClientFactory.cs -------------------------------------------------------------------------------- /src/FluentRest.Factory/IFluentClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Factory/IFluentClientFactory.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeContainerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeContainerBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeContentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeContentBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeMessageHandler.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeMessageStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeMessageStore.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeResponseBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeResponseBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeResponseContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeResponseContainer.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeResponseMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeResponseMessage.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FakeResponseMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FakeResponseMode.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FileMessageStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FileMessageStore.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/FluentRest.Fake.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/FluentRest.Fake.csproj -------------------------------------------------------------------------------- /src/FluentRest.Fake/IFakeMessageStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/IFakeMessageStore.cs -------------------------------------------------------------------------------- /src/FluentRest.Fake/MemoryMessageStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.Fake/MemoryMessageStore.cs -------------------------------------------------------------------------------- /src/FluentRest.NewtonsoftJson/FluentRest.NewtonsoftJson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.NewtonsoftJson/FluentRest.NewtonsoftJson.csproj -------------------------------------------------------------------------------- /src/FluentRest.NewtonsoftJson/NewtonsoftJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest.NewtonsoftJson/NewtonsoftJsonSerializer.cs -------------------------------------------------------------------------------- /src/FluentRest/CodeAnalysis/NullableAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/CodeAnalysis/NullableAttributes.cs -------------------------------------------------------------------------------- /src/FluentRest/ContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/ContentSerializer.cs -------------------------------------------------------------------------------- /src/FluentRest/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/FluentRest/FluentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/FluentClient.cs -------------------------------------------------------------------------------- /src/FluentRest/FluentClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/FluentClientExtensions.cs -------------------------------------------------------------------------------- /src/FluentRest/FluentDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/FluentDispatcher.cs -------------------------------------------------------------------------------- /src/FluentRest/FluentProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/FluentProperties.cs -------------------------------------------------------------------------------- /src/FluentRest/FluentRest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/FluentRest.csproj -------------------------------------------------------------------------------- /src/FluentRest/FormBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/FormBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest/HeaderBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/HeaderBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/FluentRest/HttpMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/HttpMessageExtensions.cs -------------------------------------------------------------------------------- /src/FluentRest/HttpRequestHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/HttpRequestHeaders.cs -------------------------------------------------------------------------------- /src/FluentRest/HttpResponseHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/HttpResponseHeaders.cs -------------------------------------------------------------------------------- /src/FluentRest/IContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/IContentSerializer.cs -------------------------------------------------------------------------------- /src/FluentRest/IFluentClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/IFluentClient.cs -------------------------------------------------------------------------------- /src/FluentRest/JsonContentSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/JsonContentSerializer.cs -------------------------------------------------------------------------------- /src/FluentRest/PostBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/PostBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest/ProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/ProblemDetails.cs -------------------------------------------------------------------------------- /src/FluentRest/ProblemDetailsJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/ProblemDetailsJsonContext.cs -------------------------------------------------------------------------------- /src/FluentRest/ProblemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/ProblemException.cs -------------------------------------------------------------------------------- /src/FluentRest/QueryBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/QueryBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest/RequestBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/RequestBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest/RequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/RequestExtensions.cs -------------------------------------------------------------------------------- /src/FluentRest/SendBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/SendBuilder.cs -------------------------------------------------------------------------------- /src/FluentRest/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/FluentRest/UrlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/src/FluentRest/UrlBuilder.cs -------------------------------------------------------------------------------- /test/FluentRest.Factory.Tests/FactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Factory.Tests/FactoryTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Factory.Tests/FluentRest.Factory.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Factory.Tests/FluentRest.Factory.Tests.csproj -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/Data/8A26261B3D3E0A1D9169DBA1DA808CC73C0254FD.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/Data/8A26261B3D3E0A1D9169DBA1DA808CC73C0254FD.data -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/Data/8A26261B3D3E0A1D9169DBA1DA808CC73C0254FD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/Data/8A26261B3D3E0A1D9169DBA1DA808CC73C0254FD.json -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/EchoClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/EchoClient.cs -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/EchoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/EchoResult.cs -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/FileMessageStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/FileMessageStoreTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/FluentRest.Fake.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/FluentRest.Fake.Tests.csproj -------------------------------------------------------------------------------- /test/FluentRest.Fake.Tests/MemoryStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Fake.Tests/MemoryStoreTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/EchoResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/EchoResult.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/FluentEchoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/FluentEchoTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/FluentRest.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/FluentRest.Tests.csproj -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/GitHubFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/GitHubFactoryTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/GitHubTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/GitHubTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/GithubClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/GithubClient.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/Issue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/Issue.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/Label.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/Label.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/Milestone.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/Milestone.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/Organization.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/Organization.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/Owner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/Owner.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/PullRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/PullRequest.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/Repository.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/Models/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/Models/User.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/GitHub/RetryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/GitHub/RetryHandler.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/GoogleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/GoogleTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/Models/AddressComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/Models/AddressComponent.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/Models/GeocodeResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/Models/GeocodeResponse.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/Models/GeocodeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/Models/GeocodeResult.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/Models/Geometry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/Models/Geometry.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/Models/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/Models/Location.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/Google/Maps/Models/Viewport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/Google/Maps/Models/Viewport.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/HostCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/HostCollection.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/HostFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/HostFixture.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/HostTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/HostTestBase.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/HttpClientEchoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/HttpClientEchoTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/ProblemDetailsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/ProblemDetailsTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/QueryBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/QueryBuilderTest.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/UrlBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/UrlBuilderTests.cs -------------------------------------------------------------------------------- /test/FluentRest.Tests/UserData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/FluentRest/HEAD/test/FluentRest.Tests/UserData.cs --------------------------------------------------------------------------------