diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-30 07:42:12 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-10-02 07:33:57 -0700 |
commit | 08a2ca3fdbe337ba11575cf7893ab547536bb4e2 (patch) | |
tree | 450764d5a45091de0683d3f164a7efaa6164b22d /src/DotNetOAuth/DotNetOAuth.csproj | |
parent | 5cbd5d7edb994f874b265ed2e7c43f0bcd27b6ac (diff) | |
download | DotNetOpenAuth-08a2ca3fdbe337ba11575cf7893ab547536bb4e2.zip DotNetOpenAuth-08a2ca3fdbe337ba11575cf7893ab547536bb4e2.tar.gz DotNetOpenAuth-08a2ca3fdbe337ba11575cf7893ab547536bb4e2.tar.bz2 |
Split up the two OAuth message type providers into Consumer and Service Provider classes so they could actually work correctly..
Added Try methods to read messages that might not be there without throwing exceptions.
Diffstat (limited to 'src/DotNetOAuth/DotNetOAuth.csproj')
-rw-r--r-- | src/DotNetOAuth/DotNetOAuth.csproj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/DotNetOAuth/DotNetOAuth.csproj b/src/DotNetOAuth/DotNetOAuth.csproj index 9eb36d0..0dd6d15 100644 --- a/src/DotNetOAuth/DotNetOAuth.csproj +++ b/src/DotNetOAuth/DotNetOAuth.csproj @@ -57,6 +57,7 @@ <Reference Include="System.XML" />
</ItemGroup>
<ItemGroup>
+ <Compile Include="ChannelElements\OAuthConsumerMessageTypeProvider.cs" />
<Compile Include="ChannelElements\ITokenGenerator.cs" />
<Compile Include="ChannelElements\ITokenManager.cs" />
<Compile Include="ChannelElements\OAuthHttpMethodBindingElement.cs" />
@@ -120,7 +121,7 @@ <Compile Include="Loggers\TraceLogger.cs" />
<Compile Include="Messaging\HttpDeliveryMethod.cs" />
<Compile Include="Messaging\MessageTransport.cs" />
- <Compile Include="ChannelElements\OAuthMessageTypeProvider.cs" />
+ <Compile Include="ChannelElements\OAuthServiceProviderMessageTypeProvider.cs" />
<Compile Include="Messaging\ProtocolException.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Messages\RequestTokenMessage.cs" />
|