summaryrefslogtreecommitdiffstats
path: root/samples
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-08 10:10:28 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-08 10:10:28 -0700
commit4db9f1fe2715927a5d4be040bd15545c8dd2764d (patch)
tree7ede3466452a658b87411755b7b38522e54eb3b8 /samples
parent35e747c25dd0bf44f022faa816ec1ed5a6c3e4e4 (diff)
downloadDotNetOpenAuth-4db9f1fe2715927a5d4be040bd15545c8dd2764d.zip
DotNetOpenAuth-4db9f1fe2715927a5d4be040bd15545c8dd2764d.tar.gz
DotNetOpenAuth-4db9f1fe2715927a5d4be040bd15545c8dd2764d.tar.bz2
Renamed IAuthorizationServer to IAuthorizationServerHost.
To avoid confusion with the concrete class AuthorizationServer.
Diffstat (limited to 'samples')
-rw-r--r--samples/OAuthAuthorizationServer/Code/OAuth2AuthorizationServer.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthAuthorizationServer/Code/OAuth2AuthorizationServer.cs b/samples/OAuthAuthorizationServer/Code/OAuth2AuthorizationServer.cs
index 59e66ba..af98072 100644
--- a/samples/OAuthAuthorizationServer/Code/OAuth2AuthorizationServer.cs
+++ b/samples/OAuthAuthorizationServer/Code/OAuth2AuthorizationServer.cs
@@ -10,7 +10,7 @@
using DotNetOpenAuth.OAuth2.ChannelElements;
using DotNetOpenAuth.OAuth2.Messages;
- internal class OAuth2AuthorizationServer : IAuthorizationServer {
+ internal class OAuth2AuthorizationServer : IAuthorizationServerHost {
#if SAMPLESONLY
/// <summary>
/// This is the FOR SAMPLE ONLY hard-coded public key of the complementary OAuthResourceServer sample.
@@ -29,7 +29,7 @@
private static readonly RSAParameters ResourceServerEncryptionPublicKey;
#endif
- #region Implementation of IAuthorizationServer
+ #region Implementation of IAuthorizationServerHost
public ICryptoKeyStore CryptoKeyStore {
get { return MvcApplication.KeyNonceStore; }