diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2008-09-13 13:42:46 -0700 |
---|---|---|
committer | Andrew <andrewarnott@gmail.com> | 2008-09-13 13:42:46 -0700 |
commit | f665e1e639319918385fcc8397f8c0d5009e3bdd (patch) | |
tree | 6219f476ab24bc187eac79b501d7de73c9acd234 /src/DotNetOAuth/DotNetOAuth.csproj | |
parent | 61650a6ec207c94cb92e27227dac75606c3e7e00 (diff) | |
download | DotNetOpenAuth-f665e1e639319918385fcc8397f8c0d5009e3bdd.zip DotNetOpenAuth-f665e1e639319918385fcc8397f8c0d5009e3bdd.tar.gz DotNetOpenAuth-f665e1e639319918385fcc8397f8c0d5009e3bdd.tar.bz2 |
Totally refactored signing, expiration and replay detection into extensible channel binding elements.
Diffstat (limited to 'src/DotNetOAuth/DotNetOAuth.csproj')
-rw-r--r-- | src/DotNetOAuth/DotNetOAuth.csproj | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/DotNetOAuth/DotNetOAuth.csproj b/src/DotNetOAuth/DotNetOAuth.csproj index fb41be1..253d4df 100644 --- a/src/DotNetOAuth/DotNetOAuth.csproj +++ b/src/DotNetOAuth/DotNetOAuth.csproj @@ -68,6 +68,8 @@ <ItemGroup>
<Compile Include="Consumer.cs" />
<Compile Include="IWebRequestHandler.cs" />
+ <Compile Include="Messaging\ChannelProtection.cs" />
+ <Compile Include="Messaging\IChannelBindingElement.cs" />
<Compile Include="Messaging\ReplayedMessageException.cs" />
<Compile Include="Messaging\ExpiredMessageException.cs" />
<Compile Include="Messaging\DataContractMemberComparer.cs" />
@@ -87,6 +89,7 @@ <DependentUpon>MessagingStrings.resx</DependentUpon>
</Compile>
<Compile Include="Messaging\MessagingUtilities.cs" />
+ <Compile Include="Messaging\StandardMessageExpirationBindingElement.cs" />
<Compile Include="OAuthChannel.cs" />
<Compile Include="Messaging\Response.cs" />
<Compile Include="Messaging\IProtocolMessage.cs" />
|