├── .gitignore ├── LICENSE ├── README.md ├── VERSION ├── rakefile ├── src ├── FluentHttp-Net20.sln ├── FluentHttp-Net35.sln ├── FluentHttp-Net40.sln ├── FluentHttp-SL4.sln ├── FluentHttp-WP7.sln ├── FluentHttp.Mono.sln ├── FluentHttp.Tests │ ├── AuthenticatorsOld │ │ └── OAuth2 │ │ │ └── AuthorizationHeader │ │ │ ├── AuthorizationTests.cs │ │ │ ├── OAuth2AuthenticatorCtor.cs │ │ │ ├── OAuth2AuthenticatorCtor.feature │ │ │ ├── OAuth2AuthenticatorCtor.feature.cs │ │ │ ├── OAuth2AuthorizationHeader.cs │ │ │ ├── OAuth2AuthorizationHeader.feature │ │ │ └── OAuth2AuthorizationHeader.feature.cs │ ├── CredentialsTests.cs │ ├── FluentAuthenticators │ │ ├── HttpBasicAuthenticator.cs │ │ └── OAuth2Authenticator.cs │ ├── FluentHttp.Tests-Net40.csproj │ ├── FluentHttpRequest │ │ ├── BufferSize │ │ │ └── GivenANewRequestWhenISetTheBufferSizeThen.cs │ │ ├── Ctor │ │ │ └── GivenABaseUrlThen.cs │ │ ├── Method │ │ │ └── GivenAVaildMethodThen.cs │ │ ├── ResourcePath │ │ │ ├── GivenANonNullOrNonEmptyResourcePathStartingWihoutSlashThen.cs │ │ │ ├── GivenANullResourcePathThen.cs │ │ │ ├── GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathAsNullThen.cs │ │ │ ├── GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathThen.cs │ │ │ ├── GivenAResourcePathAsSlashThen.cs │ │ │ └── GivenAnEmptyResourcePathThen.cs │ │ └── Timeout │ │ │ └── WhenGivenANewRequestAndISetTimeoutThen.cs │ ├── HttpHeader │ │ ├── HttpHeaderCtor.cs │ │ ├── HttpHeaderCtor.feature │ │ ├── HttpHeaderCtor.feature.cs │ │ └── SpecialHeader.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── QueryString │ │ ├── QueryStringCtor.cs │ │ ├── QueryStringCtor.feature │ │ └── QueryStringCtor.feature.cs │ ├── ResourcePathTests.cs │ ├── Settings.StyleCop │ ├── TimeoutTests.cs │ ├── Utils │ │ └── AddStartingSlashIfNotPresent │ │ │ ├── GivenASingleLetterStringExceptSlashThen.cs │ │ │ ├── GivenAStringStartingWithSlashThen.cs │ │ │ ├── GivenAStringWithoutSlashThen.cs │ │ │ ├── GivenEmptyStringThen.cs │ │ │ ├── GivenNullStringThen.cs │ │ │ └── GivenSlashOnlyThen.cs │ └── packages.config ├── FluentHttp │ ├── CombinationStream.cs │ ├── Core │ │ ├── HttpWebHelper.cs │ │ ├── HttpWebHelperResult.cs │ │ ├── HttpWebRequestWrapper.cs │ │ ├── HttpWebResponseWrapper.cs │ │ ├── IHttpWebRequest.cs │ │ ├── IHttpWebResponse.cs │ │ ├── Pair.cs │ │ ├── ResponseReceivedEventArgs.cs │ │ └── WebExceptionWrapper.cs │ ├── FluentHttp-Net20.csproj │ ├── FluentHttp-Net35.csproj │ ├── FluentHttp-Net40.csproj │ ├── FluentHttp-SL4.csproj │ ├── FluentHttp-WP7.csproj │ ├── FluentHttp.Mono.csproj │ ├── FluentHttpAsyncResult.cs │ ├── FluentHttpHeaders.cs │ ├── FluentHttpRequest.cs │ ├── FluentHttpRequestBody.cs │ ├── FluentHttpResponse.cs │ ├── FluentQueryStrings.cs │ ├── HttpEncoder.cs │ ├── HttpUtility.cs │ ├── IFluentAuthenticator.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── ResponseHeadersReceivedEventArgs.cs ├── Samples │ ├── FluentHttpSamples-Net35 │ │ ├── FluentHttpSamples-Net35.csproj │ │ └── Properties │ │ │ └── AssemblyInfo.cs │ └── FluentHttpSamples-Net40 │ │ ├── FluentHttpSamples-Net40.csproj │ │ ├── MediaObject.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SimpleJson.cs │ │ └── packages.config ├── Settings.StyleCop ├── docs.shfbproj └── packages │ ├── NuGet.CommandLine.1.3.20425.372 │ ├── NuGet.CommandLine.1.3.20425.372.nupkg │ └── tools │ │ └── NuGet.exe │ ├── SimpleJson.0.6.0.0 │ ├── Content │ │ └── SimpleJson.cs │ └── SimpleJson.0.6.0.0.nupkg │ ├── repositories.config │ ├── xunit.1.8.0.1545 │ ├── lib │ │ ├── xunit.dll │ │ └── xunit.xml │ └── xunit.1.8.0.1545.nupkg │ └── xunit.extensions.1.8.0.1545 │ ├── lib │ ├── xunit.extensions.dll │ └── xunit.extensions.xml │ └── xunit.extensions.1.8.0.1545.nupkg └── tools └── xunit ├── HTML.xslt ├── NUnitXml.xslt ├── xunit.console.clr4.x86.exe ├── xunit.console.clr4.x86.exe.config └── xunit.runner.utility.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.1.0 -------------------------------------------------------------------------------- /rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/rakefile -------------------------------------------------------------------------------- /src/FluentHttp-Net20.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp-Net20.sln -------------------------------------------------------------------------------- /src/FluentHttp-Net35.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp-Net35.sln -------------------------------------------------------------------------------- /src/FluentHttp-Net40.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp-Net40.sln -------------------------------------------------------------------------------- /src/FluentHttp-SL4.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp-SL4.sln -------------------------------------------------------------------------------- /src/FluentHttp-WP7.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp-WP7.sln -------------------------------------------------------------------------------- /src/FluentHttp.Mono.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Mono.sln -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/AuthorizationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/AuthorizationTests.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthenticatorCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthenticatorCtor.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthenticatorCtor.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthenticatorCtor.feature -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthenticatorCtor.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthenticatorCtor.feature.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthorizationHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthorizationHeader.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthorizationHeader.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthorizationHeader.feature -------------------------------------------------------------------------------- /src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthorizationHeader.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/AuthenticatorsOld/OAuth2/AuthorizationHeader/OAuth2AuthorizationHeader.feature.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/CredentialsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/CredentialsTests.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentAuthenticators/HttpBasicAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentAuthenticators/HttpBasicAuthenticator.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentAuthenticators/OAuth2Authenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentAuthenticators/OAuth2Authenticator.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttp.Tests-Net40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttp.Tests-Net40.csproj -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/BufferSize/GivenANewRequestWhenISetTheBufferSizeThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/BufferSize/GivenANewRequestWhenISetTheBufferSizeThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/Ctor/GivenABaseUrlThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/Ctor/GivenABaseUrlThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/Method/GivenAVaildMethodThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/Method/GivenAVaildMethodThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenANonNullOrNonEmptyResourcePathStartingWihoutSlashThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenANonNullOrNonEmptyResourcePathStartingWihoutSlashThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenANullResourcePathThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenANullResourcePathThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathAsNullThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathAsNullThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenARequestWithResourcePathAlreadySetWhenISetANewResourcePathThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenAResourcePathAsSlashThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenAResourcePathAsSlashThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenAnEmptyResourcePathThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/ResourcePath/GivenAnEmptyResourcePathThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/FluentHttpRequest/Timeout/WhenGivenANewRequestAndISetTimeoutThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/FluentHttpRequest/Timeout/WhenGivenANewRequestAndISetTimeoutThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/HttpHeader/HttpHeaderCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/HttpHeader/HttpHeaderCtor.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/HttpHeader/HttpHeaderCtor.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/HttpHeader/HttpHeaderCtor.feature -------------------------------------------------------------------------------- /src/FluentHttp.Tests/HttpHeader/HttpHeaderCtor.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/HttpHeader/HttpHeaderCtor.feature.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/HttpHeader/SpecialHeader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/HttpHeader/SpecialHeader.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/QueryString/QueryStringCtor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/QueryString/QueryStringCtor.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/QueryString/QueryStringCtor.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/QueryString/QueryStringCtor.feature -------------------------------------------------------------------------------- /src/FluentHttp.Tests/QueryString/QueryStringCtor.feature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/QueryString/QueryStringCtor.feature.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/ResourcePathTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/ResourcePathTests.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Settings.StyleCop -------------------------------------------------------------------------------- /src/FluentHttp.Tests/TimeoutTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/TimeoutTests.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenASingleLetterStringExceptSlashThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenASingleLetterStringExceptSlashThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenAStringStartingWithSlashThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenAStringStartingWithSlashThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenAStringWithoutSlashThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenAStringWithoutSlashThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenEmptyStringThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenEmptyStringThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenNullStringThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenNullStringThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenSlashOnlyThen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/Utils/AddStartingSlashIfNotPresent/GivenSlashOnlyThen.cs -------------------------------------------------------------------------------- /src/FluentHttp.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp.Tests/packages.config -------------------------------------------------------------------------------- /src/FluentHttp/CombinationStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/CombinationStream.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/HttpWebHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/HttpWebHelper.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/HttpWebHelperResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/HttpWebHelperResult.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/HttpWebRequestWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/HttpWebRequestWrapper.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/HttpWebResponseWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/HttpWebResponseWrapper.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/IHttpWebRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/IHttpWebRequest.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/IHttpWebResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/IHttpWebResponse.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/Pair.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/Pair.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/ResponseReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/ResponseReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/FluentHttp/Core/WebExceptionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Core/WebExceptionWrapper.cs -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttp-Net20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttp-Net20.csproj -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttp-Net35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttp-Net35.csproj -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttp-Net40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttp-Net40.csproj -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttp-SL4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttp-SL4.csproj -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttp-WP7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttp-WP7.csproj -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttp.Mono.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttp.Mono.csproj -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttpAsyncResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttpAsyncResult.cs -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttpHeaders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttpHeaders.cs -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttpRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttpRequest.cs -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttpRequestBody.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttpRequestBody.cs -------------------------------------------------------------------------------- /src/FluentHttp/FluentHttpResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentHttpResponse.cs -------------------------------------------------------------------------------- /src/FluentHttp/FluentQueryStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/FluentQueryStrings.cs -------------------------------------------------------------------------------- /src/FluentHttp/HttpEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/HttpEncoder.cs -------------------------------------------------------------------------------- /src/FluentHttp/HttpUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/HttpUtility.cs -------------------------------------------------------------------------------- /src/FluentHttp/IFluentAuthenticator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/IFluentAuthenticator.cs -------------------------------------------------------------------------------- /src/FluentHttp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/FluentHttp/ResponseHeadersReceivedEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/FluentHttp/ResponseHeadersReceivedEventArgs.cs -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net35/FluentHttpSamples-Net35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net35/FluentHttpSamples-Net35.csproj -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net35/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net35/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net40/FluentHttpSamples-Net40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net40/FluentHttpSamples-Net40.csproj -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net40/MediaObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net40/MediaObject.cs -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net40/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net40/Program.cs -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net40/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net40/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net40/SimpleJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net40/SimpleJson.cs -------------------------------------------------------------------------------- /src/Samples/FluentHttpSamples-Net40/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Samples/FluentHttpSamples-Net40/packages.config -------------------------------------------------------------------------------- /src/Settings.StyleCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/Settings.StyleCop -------------------------------------------------------------------------------- /src/docs.shfbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/docs.shfbproj -------------------------------------------------------------------------------- /src/packages/NuGet.CommandLine.1.3.20425.372/NuGet.CommandLine.1.3.20425.372.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/NuGet.CommandLine.1.3.20425.372/NuGet.CommandLine.1.3.20425.372.nupkg -------------------------------------------------------------------------------- /src/packages/NuGet.CommandLine.1.3.20425.372/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/NuGet.CommandLine.1.3.20425.372/tools/NuGet.exe -------------------------------------------------------------------------------- /src/packages/SimpleJson.0.6.0.0/Content/SimpleJson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/SimpleJson.0.6.0.0/Content/SimpleJson.cs -------------------------------------------------------------------------------- /src/packages/SimpleJson.0.6.0.0/SimpleJson.0.6.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/SimpleJson.0.6.0.0/SimpleJson.0.6.0.0.nupkg -------------------------------------------------------------------------------- /src/packages/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/repositories.config -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.dll -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/lib/xunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/xunit.1.8.0.1545/lib/xunit.xml -------------------------------------------------------------------------------- /src/packages/xunit.1.8.0.1545/xunit.1.8.0.1545.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/xunit.1.8.0.1545/xunit.1.8.0.1545.nupkg -------------------------------------------------------------------------------- /src/packages/xunit.extensions.1.8.0.1545/lib/xunit.extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/xunit.extensions.1.8.0.1545/lib/xunit.extensions.dll -------------------------------------------------------------------------------- /src/packages/xunit.extensions.1.8.0.1545/lib/xunit.extensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/xunit.extensions.1.8.0.1545/lib/xunit.extensions.xml -------------------------------------------------------------------------------- /src/packages/xunit.extensions.1.8.0.1545/xunit.extensions.1.8.0.1545.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/src/packages/xunit.extensions.1.8.0.1545/xunit.extensions.1.8.0.1545.nupkg -------------------------------------------------------------------------------- /tools/xunit/HTML.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/tools/xunit/HTML.xslt -------------------------------------------------------------------------------- /tools/xunit/NUnitXml.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/tools/xunit/NUnitXml.xslt -------------------------------------------------------------------------------- /tools/xunit/xunit.console.clr4.x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/tools/xunit/xunit.console.clr4.x86.exe -------------------------------------------------------------------------------- /tools/xunit/xunit.console.clr4.x86.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/tools/xunit/xunit.console.clr4.x86.exe.config -------------------------------------------------------------------------------- /tools/xunit/xunit.runner.utility.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prabirshrestha/FluentHttp/HEAD/tools/xunit/xunit.runner.utility.dll --------------------------------------------------------------------------------