summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth/OAuth/ChannelElements/OAuthChannel.cs
Commit message (Expand)AuthorAgeFilesLines
* First pass at dividing DotNetOpenAuth features into separate assemblies.Andrew Arnott2011-07-011-410/+0
* FxCop fixes.Andrew Arnott2011-05-281-3/+3
* Merge branch 'v3.4' into oauth2Andrew Arnott2011-05-061-0/+4
|\
| * Removed the explicit namespaces from all the SuppressMessageAttribute referen...Andrew Arnott2011-04-301-3/+4
| * FxCop fixes and suppressions.Andrew Arnott2011-04-291-0/+3
* | Merge branch 'v3.4' into oauth2Andrew Arnott2011-04-061-12/+30
|\ \ | |/
| * Fixed build breaks and StyleCop messages from prior commit.Andrew Arnott2011-04-061-2/+3
| * The OAuth MaximumRequestTokenTimeToLive setting is now configurable programma...Andrew Arnott2011-03-311-11/+28
| * Merge branch 'v3.3' into v3.4Andrew Arnott2010-07-191-0/+2
| |\
| | * Merge branch 'v3.2' into v3.3Andrew Arnott2010-07-191-0/+2
| | |\
| | | * Merge branch 'v3.0' into v3.1Andrew Arnott2010-07-191-0/+2
| | | |\
| | | | * Fixes OAuth 1.0(a) base signature string construction to omit the realm param...Andrew Arnott2010-06-271-0/+2
* | | | | Fixes OAuth 1.0(a) base signature string construction to omit the realm param...Andrew Arnott2010-06-271-0/+1
* | | | | Moved authorization header creation and parsing into the MessagingUtilities c...Andrew Arnott2010-05-291-37/+3
|/ / / /
* | | | Merge branch 'v3.3' into v3.4Andrew Arnott2010-03-171-1/+5
|\ \ \ \ | |/ / /
| * | | Fix for OAuthChannel.ReadFromRequestCore throwing an unhandled ArgumentNullEx...Andrew Arnott2010-03-071-1/+5
* | | | Merge branch 'v3.3' into v3.4Andrew Arnott2010-02-131-3/+7
|\ \ \ \ | |/ / /
| * | | Fixed parsing the Content-Type header in a couple places.Andrew Arnott2010-02-021-3/+7
* | | | Merge branch 'v3.3' into v3.4Andrew Arnott2010-01-141-1/+11
|\ \ \ \ | |/ / /
| * | | OAuth now supports HEAD HTTP method, and won't throw unhandled exception on u...Andrew Arnott2010-01-121-1/+11
* | | | FxCop fixesAndrew Arnott2010-01-121-1/+1
* | | | Fixed some bugs in the way multipart messages were handled or even allowed in...Andrew Arnott2010-01-111-8/+7
* | | | Added support for binary "extra data" in messages.Andrew Arnott2010-01-111-5/+19
|/ / /
* | | More contracts work.Andrew Arnott2009-09-061-6/+3
* | | Merge branch 'master' into contractsAndrew Arnott2009-09-011-3/+10
|\ \ \
| * \ \ Merge branch 'v3.2'Andrew Arnott2009-08-311-1/+5
| |\ \ \ | | |/ /
| | * | Merge branch 'v3.0' into v3.1Andrew Arnott2009-08-311-1/+5
| | |\ \ | | | |/
| | | * Fixed unhandled exception in OAuth that was thrown for URLs that have query s...Andrew Arnott2009-08-111-1/+5
| * | | Added capability to send PUT and DELETE HTTP requests using OAuth.Andrew Arnott2009-08-181-1/+5
| |/ /
| * | Merge branch 'v3.0' into v3.1Andrew Arnott2009-07-271-1/+0
| |\ \ | | |/
| | * Cleaned up all StyleCop and FxCop messages.Andrew Arnott2009-07-271-1/+0
* | | Merge branch 'master' into contractsAndrew Arnott2009-06-251-7/+32
|\ \ \ | |/ /
| * | Merge branch 'v3.0' into v3.1Andrew Arnott2009-06-191-6/+31
| |\ \ | | |/
| | * Refactored OAuth service provider interfaces to better suite token and consum...Andrew Arnott2009-06-081-1/+1
| | * Refactored where token manager integration occurs.Andrew Arnott2009-06-061-1/+1
| | * Initial change to comply with OAuth 1.0a.Andrew Arnott2009-06-051-3/+26
| | * OAuth messages now only scrape the FORM data for application/x-www-form-urlen...Andrew Arnott2009-05-291-2/+4
| * | Cleaned up distinction between public and rewritten request URLs.Andrew Arnott2009-06-181-1/+1
| |/
* | Switched almost entirely over to Code Contracts across the entire library.Andrew Arnott2009-05-231-15/+5
|/
* Fixes OpenID and OAuth URL data string encoding to follow RFC 3986 instead of...Andrew Arnott2009-05-111-4/+4
* Fixed bug where Authorization header POST requests would fail because of a mi...Andrew Arnott2009-05-041-4/+10
* StyleCop fixes.Andrew Arnott2009-04-301-1/+1
* Revised OAuth channel to better support different combinations of HTTP methods.Andrew Arnott2009-04-301-11/+51
* Revert "Fixed OAuth authorization header handler to use POST requests where n...Andrew Arnott2009-04-301-4/+0
* Fixed OAuth authorization header handler to use POST requests where necessary.Andrew Arnott2009-04-291-0/+4
* Split up ITokenManager into two derived interfaces to better fit Consumer and...Andrew Arnott2009-04-081-10/+35
* Cleaned up logging.Andrew Arnott2009-03-151-1/+1
* Renamed a couple of methods:Andrew Arnott2009-03-151-1/+1
* Renamed some methods on the Channel class to be more consistent.Andrew Arnott2009-03-151-1/+1
* Renamed UserAgentResponse to OutgoingWebResponse, and DirectWebResponse to In...Andrew Arnott2009-03-151-3/+3
* Refactored MessageDescription to be per-Channel instead of appdomain static.Andrew Arnott2009-03-141-5/+5
* Renamed all the Channel virtual methods that end with Internal to end with Core.Andrew Arnott2009-03-101-3/+3
* OpenID error direct response messages are now sent with HTTP status codes of ...Andrew Arnott2009-01-291-0/+6
* Fixed the DirectWebResponse bug that broke the OAuth sample.Andrew Arnott2009-01-121-1/+2
* Organized unit tests in the .vsmdi file.Andrew Arnott2009-01-091-35/+11
* Lots of work toward extensions.Andrew Arnott2008-12-191-1/+1
* A touch of refactoring and C# warning resolution.Andrew Arnott2008-11-241-2/+2
* Added YADIS and other discovery, XRDS, untrusted web requests.Andrew Arnott2008-11-231-1/+1
* Reworked the way messages are instantiated and deserialized.Andrew Arnott2008-11-201-3/+3
* Added association messages.Andrew Arnott2008-11-111-3/+4
* Added very basic OpenID message passing scenario test.Andrew Arnott2008-11-091-5/+5
* Renamed a couple of methods in OAuthChannel to be more clear.Andrew Arnott2008-11-081-23/+23
* Moved some common message transmission methods from OAuth to the parent Channel.Andrew Arnott2008-11-071-43/+0
* Refactored the Channel extensibility to better suit OpenID.Andrew Arnott2008-11-071-82/+44
* Moved OAuth-specific string resources into the OAuth directory.Andrew Arnott2008-11-061-2/+2
* Changed namepace and project names in preparation for merge with DotNetOpenId.Andrew Arnott2008-11-041-0/+397