AnantLabs / oauth-dot-net

Automatically exported from code.google.com/p/oauth-dot-net
0 stars 0 forks source link

OAuthParameters constructor does not properly initialize its Verifier property #17

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I think there is a bug with the OAuthParameters constructor. It looks like 
you forgot to add the following line:
this.Verifier = null;

This causes a KeyNotFoundException if you try to check or access the 
OAuthParameters.Verifier property before it has been set somewhere else.  
I would expect the initial value to be null (like the other properties in 
the class), but instead I get the exception.

For example, you can plainly see this issue when viewing a new instance of 
the OAuthParameters class in the debugger.

-Will
will@vertigo.com

Original issue reported on code.google.com by billyz...@yahoo.com on 23 Jul 2009 at 5:09

GoogleCodeExporter commented 9 years ago
Change implemented in trunk.

Original comment by chris.s....@gmail.com on 24 Jul 2009 at 8:27