├── .appveyor.yml ├── .gitattributes ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── HttpClientFactory.sln ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── benchmarks └── Microsoft.Extensions.Http.Performance │ ├── Configs │ └── CoreConfig.cs │ ├── CreationOverheadBenchmark.cs │ ├── FakeClientHandler.cs │ ├── FakeLoggerProvider.cs │ ├── LoggingOverheadBenchmark.cs │ └── Microsoft.Extensions.Http.Performance.csproj ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── samples └── HttpClientFactorySample │ ├── HttpClientFactorySample.csproj │ └── Program.cs ├── src ├── Directory.Build.props ├── Microsoft.Extensions.Http.Polly │ ├── DependencyInjection │ │ ├── PollyHttpClientBuilderExtensions.cs │ │ └── PollyServiceCollectionExtensions.cs │ ├── HttpRequestMessageExtensions.cs │ ├── Microsoft.Extensions.Http.Polly.csproj │ ├── PolicyHttpMessageHandler.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Resources.Designer.cs │ ├── Resources.resx │ └── baseline.netcore.json └── Microsoft.Extensions.Http │ ├── ActiveHandlerTrackingEntry.cs │ ├── DefaultHttpClientFactory.cs │ ├── DefaultHttpMessageHandlerBuilder.cs │ ├── DefaultTypedHttpClientFactory.cs │ ├── DependencyInjection │ ├── DefaultHttpClientBuilder.cs │ ├── HttpClientBuilderExtensions.cs │ ├── HttpClientFactoryServiceCollectionExtensions.cs │ └── IHttpClientBuilder.cs │ ├── ExpiredHandlerTrackingEntry.cs │ ├── HttpClientFactoryExtensions.cs │ ├── HttpClientFactoryOptions.cs │ ├── HttpMessageHandlerBuilder.cs │ ├── HttpMessageHandlerFactoryExtensions.cs │ ├── IHttpClientFactory.cs │ ├── IHttpMessageHandlerBuilderFilter.cs │ ├── IHttpMessageHandlerFactory.cs │ ├── ITypedHttpClientFactory.cs │ ├── LifetimeTrackingHttpMessageHandler.cs │ ├── Logging │ ├── HttpHeadersLogValue.cs │ ├── LoggingHttpMessageHandler.cs │ ├── LoggingHttpMessageHandlerBuilderFilter.cs │ └── LoggingScopeHttpMessageHandler.cs │ ├── Microsoft.Extensions.Http.csproj │ ├── Properties │ ├── AssemblyInfo.cs │ └── Resources.Designer.cs │ ├── Resources.resx │ └── baseline.netcore.json ├── test ├── Directory.Build.props ├── Microsoft.Extensions.Http.Polly.Test │ ├── DependencyInjection │ │ └── PollyHttpClientBuilderExtensionsTest.cs │ ├── HttpRequestMessageExtensionsTest.cs │ ├── Microsoft.Extensions.Http.Polly.Test.csproj │ └── PolicyHttpMessageHandlerTest.cs └── Microsoft.Extensions.Http.Test │ ├── DefaultHttpClientFactoryTest.cs │ ├── DefaultHttpMessageHandlerBuilderTest.cs │ ├── DependencyInjection │ ├── HttpClientFactoryServiceCollectionExtensionsTest.cs │ └── OtherTestOptions.cs │ ├── HttpMessageHandlerBuilderTest.cs │ ├── ITestTypedClient.cs │ ├── Microsoft.Extensions.Http.Test.csproj │ └── TestTypedClient.cs └── version.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /HttpClientFactory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/HttpClientFactory.sln -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Microsoft.Extensions.Http.Performance/Configs/CoreConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/benchmarks/Microsoft.Extensions.Http.Performance/Configs/CoreConfig.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.Extensions.Http.Performance/CreationOverheadBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/benchmarks/Microsoft.Extensions.Http.Performance/CreationOverheadBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.Extensions.Http.Performance/FakeClientHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/benchmarks/Microsoft.Extensions.Http.Performance/FakeClientHandler.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.Extensions.Http.Performance/FakeLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/benchmarks/Microsoft.Extensions.Http.Performance/FakeLoggerProvider.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.Extensions.Http.Performance/LoggingOverheadBenchmark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/benchmarks/Microsoft.Extensions.Http.Performance/LoggingOverheadBenchmark.cs -------------------------------------------------------------------------------- /benchmarks/Microsoft.Extensions.Http.Performance/Microsoft.Extensions.Http.Performance.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/benchmarks/Microsoft.Extensions.Http.Performance/Microsoft.Extensions.Http.Performance.csproj -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/run.sh -------------------------------------------------------------------------------- /samples/HttpClientFactorySample/HttpClientFactorySample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/samples/HttpClientFactorySample/HttpClientFactorySample.csproj -------------------------------------------------------------------------------- /samples/HttpClientFactorySample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/samples/HttpClientFactorySample/Program.cs -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/DependencyInjection/PollyHttpClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/DependencyInjection/PollyHttpClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/DependencyInjection/PollyServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/DependencyInjection/PollyServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/HttpRequestMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/HttpRequestMessageExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/Microsoft.Extensions.Http.Polly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/Microsoft.Extensions.Http.Polly.csproj -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/PolicyHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/PolicyHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http.Polly/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http.Polly/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/ActiveHandlerTrackingEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/ActiveHandlerTrackingEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DefaultHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DefaultHttpClientFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DefaultHttpMessageHandlerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DefaultHttpMessageHandlerBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DefaultTypedHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DefaultTypedHttpClientFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DependencyInjection/DefaultHttpClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DependencyInjection/DefaultHttpClientBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DependencyInjection/HttpClientBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DependencyInjection/HttpClientBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DependencyInjection/HttpClientFactoryServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/DependencyInjection/IHttpClientBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/DependencyInjection/IHttpClientBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/ExpiredHandlerTrackingEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/ExpiredHandlerTrackingEntry.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/HttpClientFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/HttpClientFactoryExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/HttpClientFactoryOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/HttpClientFactoryOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/HttpMessageHandlerBuilder.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/HttpMessageHandlerFactoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/HttpMessageHandlerFactoryExtensions.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/IHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/IHttpClientFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/IHttpMessageHandlerBuilderFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/IHttpMessageHandlerBuilderFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/IHttpMessageHandlerFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/IHttpMessageHandlerFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/ITypedHttpClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/ITypedHttpClientFactory.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/LifetimeTrackingHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/LifetimeTrackingHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Logging/HttpHeadersLogValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Logging/HttpHeadersLogValue.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Logging/LoggingHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Logging/LoggingHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Logging/LoggingHttpMessageHandlerBuilderFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Logging/LoggingHttpMessageHandlerBuilderFilter.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Logging/LoggingScopeHttpMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Logging/LoggingScopeHttpMessageHandler.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Microsoft.Extensions.Http.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Microsoft.Extensions.Http.csproj -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/Resources.resx -------------------------------------------------------------------------------- /src/Microsoft.Extensions.Http/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/src/Microsoft.Extensions.Http/baseline.netcore.json -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Polly.Test/DependencyInjection/PollyHttpClientBuilderExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Polly.Test/DependencyInjection/PollyHttpClientBuilderExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Polly.Test/HttpRequestMessageExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Polly.Test/HttpRequestMessageExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Polly.Test/Microsoft.Extensions.Http.Polly.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Polly.Test/Microsoft.Extensions.Http.Polly.Test.csproj -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Polly.Test/PolicyHttpMessageHandlerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Polly.Test/PolicyHttpMessageHandlerTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/DefaultHttpClientFactoryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/DefaultHttpClientFactoryTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/DefaultHttpMessageHandlerBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/DefaultHttpMessageHandlerBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/DependencyInjection/HttpClientFactoryServiceCollectionExtensionsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/DependencyInjection/HttpClientFactoryServiceCollectionExtensionsTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/DependencyInjection/OtherTestOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/DependencyInjection/OtherTestOptions.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/HttpMessageHandlerBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/HttpMessageHandlerBuilderTest.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/ITestTypedClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/ITestTypedClient.cs -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/Microsoft.Extensions.Http.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/Microsoft.Extensions.Http.Test.csproj -------------------------------------------------------------------------------- /test/Microsoft.Extensions.Http.Test/TestTypedClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/test/Microsoft.Extensions.Http.Test/TestTypedClient.cs -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/HttpClientFactory/HEAD/version.props --------------------------------------------------------------------------------