├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── ranger.yml ├── stale.yml └── workflows │ ├── build-dev.yml │ ├── pull-request.yml │ └── test-results.yml ├── .gitignore ├── .idea ├── .gitignore ├── RestSharp.iml ├── modules.xml └── vcs.xml ├── BEST_PRACTICES.md ├── CONTRIBUTING.md ├── Directory.Packages.props ├── LICENSE.txt ├── README.md ├── RestSharp.sln ├── RestSharp.sln.DotSettings ├── RestSharp.snk ├── agents.md ├── benchmarks └── RestSharp.Benchmarks │ ├── Program.cs │ ├── Requests │ ├── AddObjectToRequestParametersBenchmarks.cs │ └── Data.cs │ ├── RestSharp.Benchmarks.csproj │ └── Serializers │ ├── JsonNetSerializeBenchmarks.cs │ └── TestClass.cs ├── docs ├── .gitignore ├── .idea │ ├── .gitignore │ ├── GitLink.xml │ ├── docs.iml │ ├── material_theme_project_new.xml │ ├── modules.xml │ └── vcs.xml ├── README.md ├── babel.config.js ├── docs │ ├── advanced │ │ ├── _category_.json │ │ ├── authenticators.md │ │ ├── configuration.md │ │ ├── error-handling.md │ │ ├── interceptors.md │ │ └── serialization.md │ ├── changelog.md │ ├── intro.md │ └── usage │ │ ├── _category_.json │ │ ├── basics.md │ │ ├── client.md │ │ ├── example.md │ │ ├── execute.md │ │ ├── request.md │ │ └── response.md ├── docusaurus.config.ts ├── package.json ├── sidebars.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ ├── index.tsx │ │ ├── markdown-page.md │ │ ├── migration.md │ │ └── support.md ├── static │ ├── .nojekyll │ └── img │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-512x512.png │ │ ├── apple-touch-icon.png │ │ ├── aws_logo.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── restsharp.png │ │ └── site.webmanifest ├── tsconfig.json ├── versioned_docs │ ├── version-v110 │ │ ├── advanced │ │ │ ├── _category_.json │ │ │ ├── authenticators.md │ │ │ ├── configuration.md │ │ │ ├── error-handling.md │ │ │ ├── interceptors.md │ │ │ └── serialization.md │ │ ├── changelog.md │ │ ├── intro.md │ │ └── usage │ │ │ ├── _category_.json │ │ │ ├── example.md │ │ │ └── usage.md │ ├── version-v111 │ │ ├── advanced │ │ │ ├── _category_.json │ │ │ ├── authenticators.md │ │ │ ├── configuration.md │ │ │ ├── error-handling.md │ │ │ ├── interceptors.md │ │ │ └── serialization.md │ │ ├── changelog.md │ │ ├── intro.md │ │ └── usage │ │ │ ├── _category_.json │ │ │ ├── basics.md │ │ │ ├── client.md │ │ │ ├── example.md │ │ │ ├── execute.md │ │ │ ├── request.md │ │ │ └── response.md │ ├── version-v112 │ │ ├── advanced │ │ │ ├── _category_.json │ │ │ ├── authenticators.md │ │ │ ├── configuration.md │ │ │ ├── error-handling.md │ │ │ ├── interceptors.md │ │ │ └── serialization.md │ │ ├── changelog.md │ │ ├── intro.md │ │ └── usage │ │ │ ├── _category_.json │ │ │ ├── basics.md │ │ │ ├── client.md │ │ │ ├── example.md │ │ │ ├── execute.md │ │ │ ├── request.md │ │ │ └── response.md │ └── version-v113 │ │ ├── advanced │ │ ├── _category_.json │ │ ├── authenticators.md │ │ ├── configuration.md │ │ ├── error-handling.md │ │ ├── interceptors.md │ │ └── serialization.md │ │ ├── changelog.md │ │ ├── intro.md │ │ └── usage │ │ ├── _category_.json │ │ ├── basics.md │ │ ├── client.md │ │ ├── di.md │ │ ├── example.md │ │ ├── execute.md │ │ ├── request.md │ │ └── response.md ├── versioned_sidebars │ ├── version-v110-sidebars.json │ ├── version-v111-sidebars.json │ ├── version-v112-sidebars.json │ └── version-v113-sidebars.json └── versions.json ├── gen └── SourceGenerator │ ├── Extensions.cs │ ├── ImmutableGenerator.cs │ ├── InheritedCloneGenerator.cs │ ├── Properties │ └── launchSettings.json │ └── SourceGenerator.csproj ├── props └── Common.props ├── restsharp.png ├── src ├── Directory.Build.props ├── RestSharp.Extensions.DependencyInjection │ ├── Constants.cs │ ├── DefaultRestClientFactory.cs │ ├── IRestClientFactory.cs │ ├── README.md │ ├── RestClientConfigOptions.cs │ ├── RestSharp.Extensions.DependencyInjection.csproj │ └── ServiceCollectionExtensions.cs ├── RestSharp.Serializers.CsvHelper │ ├── CsvHelperSerializer.cs │ ├── README.md │ ├── RestClientExtensions.cs │ └── RestSharp.Serializers.CsvHelper.csproj ├── RestSharp.Serializers.NewtonsoftJson │ ├── JsonNetSerializer.cs │ ├── README.md │ ├── RestClientExtensions.cs │ ├── RestSharp.Serializers.NewtonsoftJson.csproj │ └── WriterBuffer.cs ├── RestSharp.Serializers.Xml │ ├── DeserializeAsAttribute.cs │ ├── README.md │ ├── RestSharp.Serializers.Xml.csproj │ ├── SerializeAsAttribute.cs │ ├── XmlAttributeDeserializer.cs │ ├── XmlDeserializer.cs │ ├── XmlExtensions.cs │ ├── XmlSerializer.cs │ └── XmlSerializerClientExtensions.cs └── RestSharp │ ├── AsyncHelpers.cs │ ├── Authenticators │ ├── AuthenticatorBase.cs │ ├── HttpBasicAuthenticator.cs │ ├── IAuthenticator.cs │ ├── JwtAuthenticator.cs │ ├── OAuth │ │ ├── Enums.cs │ │ ├── Extensions │ │ │ ├── OAuthExtensions.cs │ │ │ ├── StringExtensions.cs │ │ │ └── TimeExtensions.cs │ │ ├── OAuth1Authenticator.cs │ │ ├── OAuthTools.cs │ │ ├── OAuthWorkflow.cs │ │ ├── WebPair.cs │ │ └── WebPairCollection.cs │ └── OAuth2 │ │ ├── OAuth2AuthorizationRequestHeaderAuthenticator.cs │ │ └── OAuth2UriQueryParameterAuthenticator.cs │ ├── BuildUriExtensions.cs │ ├── ContentType.cs │ ├── Ensure.cs │ ├── Enum.cs │ ├── Extensions │ ├── CollectionExtensions.cs │ ├── CookieContainerExtensions.cs │ ├── GenerateImmutableAttribute.cs │ ├── HttpHeadersExtensions.cs │ ├── HttpResponseExtensions.cs │ ├── ReflectionExtensions.cs │ ├── StreamExtensions.cs │ ├── StringExtensions.cs │ └── WithExtensions.cs │ ├── IRestClient.cs │ ├── Interceptors │ ├── CompatibilityInterceptor.cs │ └── Interceptor.cs │ ├── KnownHeaders.cs │ ├── Options │ ├── ReadOnlyRestClientOptions.cs │ └── RestClientOptions.cs │ ├── Parameters │ ├── BodyParameter.cs │ ├── DefaultParameters.cs │ ├── FileParameter.cs │ ├── GetOrPostParameter.cs │ ├── HeaderParameter.cs │ ├── ObjectParser.cs │ ├── Parameter.cs │ ├── ParametersCollection.cs │ ├── ParametersCollectionExtensions.cs │ ├── QueryParameter.cs │ ├── RequestParameters.cs │ └── UrlSegmentParameter.cs │ ├── Polyfills │ ├── Index.cs │ ├── Range.cs │ └── Strings.cs │ ├── Properties │ ├── AssemblyInfo.cs │ └── IsExternalInit.cs │ ├── Request │ ├── BodyExtensions.cs │ ├── HttpRequestMessageExtensions.cs │ ├── PropertyCache.Populator.RequestProperty.cs │ ├── PropertyCache.Populator.cs │ ├── PropertyCache.cs │ ├── RequestContent.cs │ ├── RequestHeaders.cs │ ├── RestRequest.cs │ ├── RestRequestExtensions.Body.cs │ ├── RestRequestExtensions.File.cs │ ├── RestRequestExtensions.Headers.cs │ ├── RestRequestExtensions.Object.cs │ ├── RestRequestExtensions.Query.cs │ ├── RestRequestExtensions.Url.cs │ ├── RestRequestExtensions.cs │ ├── RestXmlRequest.cs │ └── UriExtensions.cs │ ├── Response │ ├── ResponseThrowExtension.cs │ ├── RestResponse.cs │ ├── RestResponseBase.cs │ └── RestResponseExtensions.cs │ ├── RestClient.Async.cs │ ├── RestClient.Extensions.Delete.cs │ ├── RestClient.Extensions.Get.cs │ ├── RestClient.Extensions.Head.cs │ ├── RestClient.Extensions.Options.cs │ ├── RestClient.Extensions.Params.cs │ ├── RestClient.Extensions.Patch.cs │ ├── RestClient.Extensions.Post.cs │ ├── RestClient.Extensions.Put.cs │ ├── RestClient.Extensions.cs │ ├── RestClient.cs │ ├── RestSharp.csproj │ ├── RestSharp.csproj.DotSettings │ ├── Serializers │ ├── DeseralizationException.cs │ ├── IDeserializer.cs │ ├── IRestSerializer.cs │ ├── ISerializer.cs │ ├── IWithDateFormat.cs │ ├── IWithRootElement.cs │ ├── Json │ │ ├── RestClientExtensions.cs │ │ └── SystemTextJsonSerializer.cs │ ├── RestSerializers.cs │ ├── SerializerConfig.cs │ ├── SerializerRecord.cs │ └── Xml │ │ ├── DotNetXmlDeserializer.cs │ │ ├── DotNetXmlSerializer.cs │ │ ├── DotNetXmlSerializerClientExtensions.cs │ │ ├── IXmlDeserializer.cs │ │ ├── IXmlSerializer.cs │ │ └── XmlRestSerializer.cs │ └── SimpleClientFactory.cs └── test ├── Directory.Build.props ├── RestSharp.InteractiveTests ├── AuthenticationTests.cs ├── Program.cs ├── RestSharp.InteractiveTests.csproj └── TwitterClient.cs ├── RestSharp.Tests.DependencyInjection ├── DefaultClientRequestTests.cs ├── NamedClientWithBaseUrlRequestTests.cs ├── NamedClientWithOptionsRequestTests.cs └── RestSharp.Tests.DependencyInjection.csproj ├── RestSharp.Tests.Integrated ├── Assets │ ├── Koala.jpg │ ├── KoalaÄÖäö.jpg │ ├── TestFile.txt │ └── Teståæ.txt ├── Authentication │ ├── AuthenticationTests.cs │ └── OAuth2Tests.cs ├── CompressionTests.cs ├── CookieTests.cs ├── DefaultParameterTests.cs ├── DownloadDataTests.cs ├── DownloadFileTests.cs ├── Fixtures │ ├── CaptureFixture.cs │ └── CookieExtensions.cs ├── HttpClientTests.cs ├── HttpHeadersTests.cs ├── HttpTracer │ ├── HttpMessageParts.cs │ ├── HttpTracerHandler.cs │ └── IHttpTracerLogger.cs ├── Interceptor │ ├── InterceptorTests.cs │ └── TestInterceptor.cs ├── JsonBodyTests.cs ├── MultipartFormDataTests.cs ├── NonProtocolExceptionHandlingTests.cs ├── NtlmTests.cs ├── PostTests.cs ├── ProxyTests.cs ├── PutTests.cs ├── RedirectTests.cs ├── RequestBodyTests.cs ├── RequestFailureTests.cs ├── RequestTests.cs ├── ResourceStringParametersTests.cs ├── RestSharp.Tests.Integrated.csproj ├── RootElementTests.cs ├── StatusCodeTests.cs ├── StructuredSyntaxSuffixTests.cs ├── UploadFileTests.cs └── XmlResponseTests.cs ├── RestSharp.Tests.Serializers.Csv ├── CsvHelperTests.cs ├── RestSharp.Tests.Serializers.Csv.csproj └── TestObject.cs ├── RestSharp.Tests.Serializers.Json ├── NewtonsoftJson │ ├── IntegratedSimpleTests.cs │ ├── IntegratedTests.cs │ └── SerializationTests.cs ├── RestSharp.Tests.Serializers.Json.csproj ├── SampleData.cs └── SystemTextJson │ └── SystemTextJsonTests.cs ├── RestSharp.Tests.Serializers.Xml ├── NamespacedXmlTests.cs ├── RestSharp.Tests.Serializers.Xml.csproj ├── SampleClasses │ ├── BearerToken.cs │ ├── BooleanTest.cs │ ├── ColorWithValue.cs │ ├── DeserializeAsTest │ │ └── misc.cs │ ├── EmployeeTracker.cs │ ├── EnumTest.cs │ ├── Goodreads.cs │ ├── GoogleWeatherWithAttributes.cs │ ├── HeaderAndRows.cs │ ├── JsonLists.cs │ ├── Lastfm.cs │ ├── ListSamples.cs │ ├── Oddball.cs │ ├── SOUser.cs │ ├── Struct.cs │ ├── TwilioCallList.cs │ ├── eventful.cs │ ├── foursq.cs │ ├── googleweather.cs │ ├── misc.cs │ ├── nullables.cs │ └── twitter.cs ├── SampleData │ ├── Goodreads.xml │ ├── GoodreadsFormatError.xml │ ├── GoogleWeather.xml │ ├── InlineListSample.xml │ ├── Lastfm.xml │ ├── ListWithAttributes.xml │ ├── NestedListSample.xml │ ├── boolean_from_number.xml │ ├── boolean_from_string.xml │ ├── deserialize_as_list.xml │ ├── directlists.xml │ ├── eventful.xml │ ├── header_and_rows.xml │ ├── restsharp.nuspec │ └── xmllists.xml ├── XmlAttributeDeserializerTests.cs ├── XmlDeserializerTests.cs └── XmlSerializerTests.cs ├── RestSharp.Tests.Shared ├── Extensions │ ├── StreamExtensions.cs │ ├── UriExtensions.cs │ └── WireMockExtensions.cs ├── Fixtures │ ├── Handlers.cs │ ├── RequestBodyCapturer.cs │ ├── SimpleServer.cs │ └── WebServer.cs ├── RequestTestsBase.cs ├── RestSharp.Tests.Shared.csproj └── Server │ ├── Models.cs │ └── WireMockTestServer.cs └── RestSharp.Tests ├── Auth ├── AuthenticatorTests.cs ├── HttpBasicAuthTests.cs ├── JwtAuthTests.cs ├── OAuth1AuthTests.cs ├── OAuth1SignatureTests.cs ├── OAuth1Tests.cs └── OAuthTests.cs ├── Fixtures └── MockHttpClient.cs ├── Headers ├── DefaultHeaderTests.cs ├── HeaderRangeTests.cs ├── HostHeaderTests.cs └── RequestHeaderTests.cs ├── MultipartFormTests.cs ├── ObjectParserTests.cs ├── OptionsTests.cs ├── Parameters ├── ObjectParameterTests.ArrayData.cs ├── ObjectParameterTests.CsvData.cs ├── ObjectParameterTests.FormattedData.cs ├── ObjectParameterTests.NamedData.cs ├── ObjectParameterTests.cs ├── ParameterValidationTests.cs └── UrlSegmentTests.cs ├── RestClientTests.cs ├── RestContentTests.cs ├── RestRequestTests.cs ├── RestSharp.Tests.csproj ├── SampleData ├── 4sq.json ├── GenericWithList.json ├── bearertoken.json ├── datetimes.json ├── iso8601datetimes.json ├── jsonarray.json ├── jsondictionary.json ├── jsondictionary_KeysType.json ├── jsondictionary_null.json ├── jsonenums.json ├── jsonenumtypes.json ├── jsonlists.json ├── newdatetimes.json ├── objectproperty.json ├── person.json ├── sojson.json ├── timespans.json └── underscore_prefix.json ├── StringExtensionsTests.cs ├── UrlBuilderTests.Get.cs ├── UrlBuilderTests.Post.cs └── UrlBuilderTests.cs /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/ranger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/ranger.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/workflows/build-dev.yml -------------------------------------------------------------------------------- /.github/workflows/pull-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/workflows/pull-request.yml -------------------------------------------------------------------------------- /.github/workflows/test-results.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.github/workflows/test-results.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/RestSharp.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.idea/RestSharp.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/BEST_PRACTICES.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/README.md -------------------------------------------------------------------------------- /RestSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/RestSharp.sln -------------------------------------------------------------------------------- /RestSharp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/RestSharp.sln.DotSettings -------------------------------------------------------------------------------- /RestSharp.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/RestSharp.snk -------------------------------------------------------------------------------- /agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/agents.md -------------------------------------------------------------------------------- /benchmarks/RestSharp.Benchmarks/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/benchmarks/RestSharp.Benchmarks/Program.cs -------------------------------------------------------------------------------- /benchmarks/RestSharp.Benchmarks/Requests/AddObjectToRequestParametersBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/benchmarks/RestSharp.Benchmarks/Requests/AddObjectToRequestParametersBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/RestSharp.Benchmarks/Requests/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/benchmarks/RestSharp.Benchmarks/Requests/Data.cs -------------------------------------------------------------------------------- /benchmarks/RestSharp.Benchmarks/RestSharp.Benchmarks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/benchmarks/RestSharp.Benchmarks/RestSharp.Benchmarks.csproj -------------------------------------------------------------------------------- /benchmarks/RestSharp.Benchmarks/Serializers/JsonNetSerializeBenchmarks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/benchmarks/RestSharp.Benchmarks/Serializers/JsonNetSerializeBenchmarks.cs -------------------------------------------------------------------------------- /benchmarks/RestSharp.Benchmarks/Serializers/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/benchmarks/RestSharp.Benchmarks/Serializers/TestClass.cs -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.idea/.gitignore -------------------------------------------------------------------------------- /docs/.idea/GitLink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.idea/GitLink.xml -------------------------------------------------------------------------------- /docs/.idea/docs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.idea/docs.iml -------------------------------------------------------------------------------- /docs/.idea/material_theme_project_new.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.idea/material_theme_project_new.xml -------------------------------------------------------------------------------- /docs/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.idea/modules.xml -------------------------------------------------------------------------------- /docs/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/.idea/vcs.xml -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/babel.config.js -------------------------------------------------------------------------------- /docs/docs/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/advanced/_category_.json -------------------------------------------------------------------------------- /docs/docs/advanced/authenticators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/advanced/authenticators.md -------------------------------------------------------------------------------- /docs/docs/advanced/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/advanced/configuration.md -------------------------------------------------------------------------------- /docs/docs/advanced/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/advanced/error-handling.md -------------------------------------------------------------------------------- /docs/docs/advanced/interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/advanced/interceptors.md -------------------------------------------------------------------------------- /docs/docs/advanced/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/advanced/serialization.md -------------------------------------------------------------------------------- /docs/docs/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/changelog.md -------------------------------------------------------------------------------- /docs/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/intro.md -------------------------------------------------------------------------------- /docs/docs/usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/_category_.json -------------------------------------------------------------------------------- /docs/docs/usage/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/basics.md -------------------------------------------------------------------------------- /docs/docs/usage/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/client.md -------------------------------------------------------------------------------- /docs/docs/usage/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/example.md -------------------------------------------------------------------------------- /docs/docs/usage/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/execute.md -------------------------------------------------------------------------------- /docs/docs/usage/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/request.md -------------------------------------------------------------------------------- /docs/docs/usage/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docs/usage/response.md -------------------------------------------------------------------------------- /docs/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/docusaurus.config.ts -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/sidebars.ts -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /docs/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /docs/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/css/custom.css -------------------------------------------------------------------------------- /docs/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/pages/index.module.css -------------------------------------------------------------------------------- /docs/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/pages/index.tsx -------------------------------------------------------------------------------- /docs/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/pages/markdown-page.md -------------------------------------------------------------------------------- /docs/src/pages/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/pages/migration.md -------------------------------------------------------------------------------- /docs/src/pages/support.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/src/pages/support.md -------------------------------------------------------------------------------- /docs/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/static/img/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/android-chrome-192x192.png -------------------------------------------------------------------------------- /docs/static/img/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/android-chrome-512x512.png -------------------------------------------------------------------------------- /docs/static/img/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/apple-touch-icon.png -------------------------------------------------------------------------------- /docs/static/img/aws_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/aws_logo.png -------------------------------------------------------------------------------- /docs/static/img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/favicon-16x16.png -------------------------------------------------------------------------------- /docs/static/img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/favicon-32x32.png -------------------------------------------------------------------------------- /docs/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/favicon.ico -------------------------------------------------------------------------------- /docs/static/img/restsharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/restsharp.png -------------------------------------------------------------------------------- /docs/static/img/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/static/img/site.webmanifest -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/advanced/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/advanced/authenticators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/advanced/authenticators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/advanced/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/advanced/configuration.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/advanced/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/advanced/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/advanced/interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/advanced/interceptors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/advanced/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/advanced/serialization.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/changelog.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/usage/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/usage/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/usage/example.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v110/usage/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v110/usage/usage.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/advanced/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/advanced/authenticators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/advanced/authenticators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/advanced/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/advanced/configuration.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/advanced/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/advanced/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/advanced/interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/advanced/interceptors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/advanced/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/advanced/serialization.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/changelog.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/basics.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/client.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/example.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/execute.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/request.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v111/usage/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v111/usage/response.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/advanced/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/advanced/authenticators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/advanced/authenticators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/advanced/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/advanced/configuration.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/advanced/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/advanced/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/advanced/interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/advanced/interceptors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/advanced/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/advanced/serialization.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/changelog.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/basics.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/client.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/example.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/execute.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/request.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v112/usage/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v112/usage/response.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/advanced/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/advanced/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/advanced/authenticators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/advanced/authenticators.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/advanced/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/advanced/configuration.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/advanced/error-handling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/advanced/error-handling.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/advanced/interceptors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/advanced/interceptors.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/advanced/serialization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/advanced/serialization.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/changelog.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/intro.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/_category_.json -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/basics.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/client.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/di.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/di.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/example.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/execute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/execute.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/request.md -------------------------------------------------------------------------------- /docs/versioned_docs/version-v113/usage/response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_docs/version-v113/usage/response.md -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-v110-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_sidebars/version-v110-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-v111-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_sidebars/version-v111-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-v112-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_sidebars/version-v112-sidebars.json -------------------------------------------------------------------------------- /docs/versioned_sidebars/version-v113-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versioned_sidebars/version-v113-sidebars.json -------------------------------------------------------------------------------- /docs/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/docs/versions.json -------------------------------------------------------------------------------- /gen/SourceGenerator/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/gen/SourceGenerator/Extensions.cs -------------------------------------------------------------------------------- /gen/SourceGenerator/ImmutableGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/gen/SourceGenerator/ImmutableGenerator.cs -------------------------------------------------------------------------------- /gen/SourceGenerator/InheritedCloneGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/gen/SourceGenerator/InheritedCloneGenerator.cs -------------------------------------------------------------------------------- /gen/SourceGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/gen/SourceGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /gen/SourceGenerator/SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/gen/SourceGenerator/SourceGenerator.csproj -------------------------------------------------------------------------------- /props/Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/props/Common.props -------------------------------------------------------------------------------- /restsharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/restsharp.png -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/Constants.cs -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/DefaultRestClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/DefaultRestClientFactory.cs -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/IRestClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/IRestClientFactory.cs -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/README.md -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/RestClientConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/RestClientConfigOptions.cs -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/RestSharp.Extensions.DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/RestSharp.Extensions.DependencyInjection.csproj -------------------------------------------------------------------------------- /src/RestSharp.Extensions.DependencyInjection/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Extensions.DependencyInjection/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.CsvHelper/CsvHelperSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.CsvHelper/CsvHelperSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.CsvHelper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.CsvHelper/README.md -------------------------------------------------------------------------------- /src/RestSharp.Serializers.CsvHelper/RestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.CsvHelper/RestClientExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.CsvHelper/RestSharp.Serializers.CsvHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.CsvHelper/RestSharp.Serializers.CsvHelper.csproj -------------------------------------------------------------------------------- /src/RestSharp.Serializers.NewtonsoftJson/JsonNetSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.NewtonsoftJson/JsonNetSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.NewtonsoftJson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.NewtonsoftJson/README.md -------------------------------------------------------------------------------- /src/RestSharp.Serializers.NewtonsoftJson/RestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.NewtonsoftJson/RestClientExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.NewtonsoftJson/RestSharp.Serializers.NewtonsoftJson.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.NewtonsoftJson/RestSharp.Serializers.NewtonsoftJson.csproj -------------------------------------------------------------------------------- /src/RestSharp.Serializers.NewtonsoftJson/WriterBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.NewtonsoftJson/WriterBuffer.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/DeserializeAsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/DeserializeAsAttribute.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/README.md -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/RestSharp.Serializers.Xml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/RestSharp.Serializers.Xml.csproj -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/SerializeAsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/SerializeAsAttribute.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/XmlAttributeDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/XmlAttributeDeserializer.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/XmlDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/XmlDeserializer.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/XmlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/XmlExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/XmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/XmlSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp.Serializers.Xml/XmlSerializerClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp.Serializers.Xml/XmlSerializerClientExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/AsyncHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/AsyncHelpers.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/AuthenticatorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/AuthenticatorBase.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/HttpBasicAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/HttpBasicAuthenticator.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/IAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/IAuthenticator.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/JwtAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/JwtAuthenticator.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/Enums.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/Extensions/OAuthExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/Extensions/OAuthExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/Extensions/TimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/Extensions/TimeExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/OAuth1Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/OAuth1Authenticator.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/OAuthTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/OAuthTools.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/OAuthWorkflow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/OAuthWorkflow.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/WebPair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/WebPair.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth/WebPairCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth/WebPairCollection.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth2/OAuth2AuthorizationRequestHeaderAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth2/OAuth2AuthorizationRequestHeaderAuthenticator.cs -------------------------------------------------------------------------------- /src/RestSharp/Authenticators/OAuth2/OAuth2UriQueryParameterAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Authenticators/OAuth2/OAuth2UriQueryParameterAuthenticator.cs -------------------------------------------------------------------------------- /src/RestSharp/BuildUriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/BuildUriExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/ContentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/ContentType.cs -------------------------------------------------------------------------------- /src/RestSharp/Ensure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Ensure.cs -------------------------------------------------------------------------------- /src/RestSharp/Enum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Enum.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/CookieContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/CookieContainerExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/GenerateImmutableAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/GenerateImmutableAttribute.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/HttpHeadersExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/HttpHeadersExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/HttpResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/HttpResponseExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Extensions/WithExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Extensions/WithExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/IRestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/IRestClient.cs -------------------------------------------------------------------------------- /src/RestSharp/Interceptors/CompatibilityInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Interceptors/CompatibilityInterceptor.cs -------------------------------------------------------------------------------- /src/RestSharp/Interceptors/Interceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Interceptors/Interceptor.cs -------------------------------------------------------------------------------- /src/RestSharp/KnownHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/KnownHeaders.cs -------------------------------------------------------------------------------- /src/RestSharp/Options/ReadOnlyRestClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Options/ReadOnlyRestClientOptions.cs -------------------------------------------------------------------------------- /src/RestSharp/Options/RestClientOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Options/RestClientOptions.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/BodyParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/BodyParameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/DefaultParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/DefaultParameters.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/FileParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/FileParameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/GetOrPostParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/GetOrPostParameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/HeaderParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/HeaderParameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/ObjectParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/ObjectParser.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/Parameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/ParametersCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/ParametersCollection.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/ParametersCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/ParametersCollectionExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/QueryParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/QueryParameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/RequestParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/RequestParameters.cs -------------------------------------------------------------------------------- /src/RestSharp/Parameters/UrlSegmentParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Parameters/UrlSegmentParameter.cs -------------------------------------------------------------------------------- /src/RestSharp/Polyfills/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Polyfills/Index.cs -------------------------------------------------------------------------------- /src/RestSharp/Polyfills/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Polyfills/Range.cs -------------------------------------------------------------------------------- /src/RestSharp/Polyfills/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Polyfills/Strings.cs -------------------------------------------------------------------------------- /src/RestSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RestSharp/Properties/IsExternalInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Properties/IsExternalInit.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/BodyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/BodyExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/HttpRequestMessageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/HttpRequestMessageExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/PropertyCache.Populator.RequestProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/PropertyCache.Populator.RequestProperty.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/PropertyCache.Populator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/PropertyCache.Populator.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/PropertyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/PropertyCache.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RequestContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RequestContent.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RequestHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RequestHeaders.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequest.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.Body.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.Body.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.File.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.File.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.Headers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.Headers.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.Object.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.Object.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.Query.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.Url.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.Url.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestRequestExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestRequestExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/RestXmlRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/RestXmlRequest.cs -------------------------------------------------------------------------------- /src/RestSharp/Request/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Request/UriExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Response/ResponseThrowExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Response/ResponseThrowExtension.cs -------------------------------------------------------------------------------- /src/RestSharp/Response/RestResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Response/RestResponse.cs -------------------------------------------------------------------------------- /src/RestSharp/Response/RestResponseBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Response/RestResponseBase.cs -------------------------------------------------------------------------------- /src/RestSharp/Response/RestResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Response/RestResponseExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Async.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Async.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Delete.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Get.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Get.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Head.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Head.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Options.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Params.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Params.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Patch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Patch.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Post.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.Put.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.Put.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.Extensions.cs -------------------------------------------------------------------------------- /src/RestSharp/RestClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestClient.cs -------------------------------------------------------------------------------- /src/RestSharp/RestSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestSharp.csproj -------------------------------------------------------------------------------- /src/RestSharp/RestSharp.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/RestSharp.csproj.DotSettings -------------------------------------------------------------------------------- /src/RestSharp/Serializers/DeseralizationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/DeseralizationException.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/IDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/IDeserializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/IRestSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/IRestSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/ISerializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/IWithDateFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/IWithDateFormat.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/IWithRootElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/IWithRootElement.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Json/RestClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Json/RestClientExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Json/SystemTextJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Json/SystemTextJsonSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/RestSerializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/RestSerializers.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/SerializerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/SerializerConfig.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/SerializerRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/SerializerRecord.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Xml/DotNetXmlDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Xml/DotNetXmlDeserializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Xml/DotNetXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Xml/DotNetXmlSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Xml/DotNetXmlSerializerClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Xml/DotNetXmlSerializerClientExtensions.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Xml/IXmlDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Xml/IXmlDeserializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Xml/IXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Xml/IXmlSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp/Serializers/Xml/XmlRestSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/Serializers/Xml/XmlRestSerializer.cs -------------------------------------------------------------------------------- /src/RestSharp/SimpleClientFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/src/RestSharp/SimpleClientFactory.cs -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/RestSharp.InteractiveTests/AuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.InteractiveTests/AuthenticationTests.cs -------------------------------------------------------------------------------- /test/RestSharp.InteractiveTests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.InteractiveTests/Program.cs -------------------------------------------------------------------------------- /test/RestSharp.InteractiveTests/RestSharp.InteractiveTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.InteractiveTests/RestSharp.InteractiveTests.csproj -------------------------------------------------------------------------------- /test/RestSharp.InteractiveTests/TwitterClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.InteractiveTests/TwitterClient.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.DependencyInjection/DefaultClientRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.DependencyInjection/DefaultClientRequestTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.DependencyInjection/NamedClientWithBaseUrlRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.DependencyInjection/NamedClientWithBaseUrlRequestTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.DependencyInjection/NamedClientWithOptionsRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.DependencyInjection/NamedClientWithOptionsRequestTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.DependencyInjection/RestSharp.Tests.DependencyInjection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.DependencyInjection/RestSharp.Tests.DependencyInjection.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Assets/Koala.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Assets/Koala.jpg -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Assets/KoalaÄÖäö.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Assets/KoalaÄÖäö.jpg -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Assets/TestFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Assets/TestFile.txt -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Assets/Teståæ.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Assets/Teståæ.txt -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Authentication/AuthenticationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Authentication/AuthenticationTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Authentication/OAuth2Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Authentication/OAuth2Tests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/CompressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/CompressionTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/CookieTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/CookieTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/DefaultParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/DefaultParameterTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/DownloadDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/DownloadDataTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/DownloadFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/DownloadFileTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Fixtures/CaptureFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Fixtures/CaptureFixture.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Fixtures/CookieExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Fixtures/CookieExtensions.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/HttpClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/HttpClientTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/HttpHeadersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/HttpHeadersTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/HttpTracer/HttpMessageParts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/HttpTracer/HttpMessageParts.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/HttpTracer/HttpTracerHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/HttpTracer/HttpTracerHandler.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/HttpTracer/IHttpTracerLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/HttpTracer/IHttpTracerLogger.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Interceptor/InterceptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Interceptor/InterceptorTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/Interceptor/TestInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/Interceptor/TestInterceptor.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/JsonBodyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/JsonBodyTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/MultipartFormDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/MultipartFormDataTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/NonProtocolExceptionHandlingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/NonProtocolExceptionHandlingTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/NtlmTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/NtlmTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/PostTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/PostTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/ProxyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/ProxyTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/PutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/PutTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/RedirectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/RedirectTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/RequestBodyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/RequestBodyTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/RequestFailureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/RequestFailureTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/RequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/RequestTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/ResourceStringParametersTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/ResourceStringParametersTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/RestSharp.Tests.Integrated.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/RestSharp.Tests.Integrated.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/RootElementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/RootElementTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/StatusCodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/StatusCodeTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/StructuredSyntaxSuffixTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/StructuredSyntaxSuffixTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/UploadFileTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/UploadFileTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Integrated/XmlResponseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Integrated/XmlResponseTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Csv/CsvHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Csv/CsvHelperTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Csv/RestSharp.Tests.Serializers.Csv.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Csv/RestSharp.Tests.Serializers.Csv.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Csv/TestObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Csv/TestObject.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Json/NewtonsoftJson/IntegratedSimpleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Json/NewtonsoftJson/IntegratedSimpleTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Json/NewtonsoftJson/IntegratedTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Json/NewtonsoftJson/IntegratedTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Json/NewtonsoftJson/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Json/NewtonsoftJson/SerializationTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Json/RestSharp.Tests.Serializers.Json.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Json/RestSharp.Tests.Serializers.Json.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Json/SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Json/SampleData.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Json/SystemTextJson/SystemTextJsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Json/SystemTextJson/SystemTextJsonTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/NamespacedXmlTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/NamespacedXmlTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/RestSharp.Tests.Serializers.Xml.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/RestSharp.Tests.Serializers.Xml.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/BearerToken.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/BearerToken.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/BooleanTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/BooleanTest.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/ColorWithValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/ColorWithValue.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/DeserializeAsTest/misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/DeserializeAsTest/misc.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/EmployeeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/EmployeeTracker.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/EnumTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/EnumTest.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/Goodreads.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/Goodreads.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/GoogleWeatherWithAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/GoogleWeatherWithAttributes.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/HeaderAndRows.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/HeaderAndRows.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/JsonLists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/JsonLists.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/Lastfm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/Lastfm.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/ListSamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/ListSamples.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/Oddball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/Oddball.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/SOUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/SOUser.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/Struct.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/TwilioCallList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/TwilioCallList.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/eventful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/eventful.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/foursq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/foursq.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/googleweather.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/googleweather.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/misc.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/nullables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/nullables.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleClasses/twitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleClasses/twitter.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/Goodreads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/Goodreads.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/GoodreadsFormatError.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/GoodreadsFormatError.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/GoogleWeather.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/GoogleWeather.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/InlineListSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/InlineListSample.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/Lastfm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/Lastfm.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/ListWithAttributes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/ListWithAttributes.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/NestedListSample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/NestedListSample.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/boolean_from_number.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/boolean_from_number.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/boolean_from_string.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/boolean_from_string.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/deserialize_as_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/deserialize_as_list.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/directlists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/directlists.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/eventful.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/eventful.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/header_and_rows.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/header_and_rows.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/restsharp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/restsharp.nuspec -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/SampleData/xmllists.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/SampleData/xmllists.xml -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/XmlAttributeDeserializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/XmlAttributeDeserializerTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/XmlDeserializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/XmlDeserializerTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Serializers.Xml/XmlSerializerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Serializers.Xml/XmlSerializerTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Extensions/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Extensions/StreamExtensions.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Extensions/UriExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Extensions/UriExtensions.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Extensions/WireMockExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Extensions/WireMockExtensions.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Fixtures/Handlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Fixtures/Handlers.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Fixtures/RequestBodyCapturer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Fixtures/RequestBodyCapturer.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Fixtures/SimpleServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Fixtures/SimpleServer.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Fixtures/WebServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Fixtures/WebServer.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/RequestTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/RequestTestsBase.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/RestSharp.Tests.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/RestSharp.Tests.Shared.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Server/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Server/Models.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests.Shared/Server/WireMockTestServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests.Shared/Server/WireMockTestServer.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/AuthenticatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/AuthenticatorTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/HttpBasicAuthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/HttpBasicAuthTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/JwtAuthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/JwtAuthTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/OAuth1AuthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/OAuth1AuthTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/OAuth1SignatureTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/OAuth1SignatureTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/OAuth1Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/OAuth1Tests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Auth/OAuthTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Auth/OAuthTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Fixtures/MockHttpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Fixtures/MockHttpClient.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Headers/DefaultHeaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Headers/DefaultHeaderTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Headers/HeaderRangeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Headers/HeaderRangeTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Headers/HostHeaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Headers/HostHeaderTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Headers/RequestHeaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Headers/RequestHeaderTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/MultipartFormTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/MultipartFormTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/ObjectParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/ObjectParserTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/OptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/OptionsTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/ObjectParameterTests.ArrayData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/ObjectParameterTests.ArrayData.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/ObjectParameterTests.CsvData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/ObjectParameterTests.CsvData.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/ObjectParameterTests.FormattedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/ObjectParameterTests.FormattedData.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/ObjectParameterTests.NamedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/ObjectParameterTests.NamedData.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/ObjectParameterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/ObjectParameterTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/ParameterValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/ParameterValidationTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/Parameters/UrlSegmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/Parameters/UrlSegmentTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/RestClientTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/RestClientTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/RestContentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/RestContentTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/RestRequestTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/RestRequestTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/RestSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/RestSharp.Tests.csproj -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/4sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/4sq.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/GenericWithList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/GenericWithList.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/bearertoken.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/bearertoken.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/datetimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/datetimes.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/iso8601datetimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/iso8601datetimes.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsonarray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsonarray.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsondictionary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsondictionary.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsondictionary_KeysType.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsondictionary_KeysType.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsondictionary_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsondictionary_null.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsonenums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsonenums.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsonenumtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsonenumtypes.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/jsonlists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/jsonlists.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/newdatetimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/newdatetimes.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/objectproperty.json: -------------------------------------------------------------------------------- 1 | { 2 | "ObjectProperty": 42 3 | } -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/person.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/person.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/sojson.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/sojson.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/timespans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/timespans.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/SampleData/underscore_prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/SampleData/underscore_prefix.json -------------------------------------------------------------------------------- /test/RestSharp.Tests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/UrlBuilderTests.Get.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/UrlBuilderTests.Get.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/UrlBuilderTests.Post.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/UrlBuilderTests.Post.cs -------------------------------------------------------------------------------- /test/RestSharp.Tests/UrlBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/restsharp/RestSharp/HEAD/test/RestSharp.Tests/UrlBuilderTests.cs --------------------------------------------------------------------------------