diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-06 18:01:01 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2010-06-06 18:01:01 -0700 |
commit | 8ed398b9151c8fc140379756bd3bd546a46daf05 (patch) | |
tree | 18a7801cf5801da10123176384bbdc8d45ccccde /samples/OAuthConsumer/SampleWcf2.aspx.cs | |
parent | eb81c74d8c7c8cc155a56eb7d5b36c5076f88b1f (diff) | |
download | DotNetOpenAuth-8ed398b9151c8fc140379756bd3bd546a46daf05.zip DotNetOpenAuth-8ed398b9151c8fc140379756bd3bd546a46daf05.tar.gz DotNetOpenAuth-8ed398b9151c8fc140379756bd3bd546a46daf05.tar.bz2 |
Renamed WebApp facade classes to WebServer to match messages and flow name.
Diffstat (limited to 'samples/OAuthConsumer/SampleWcf2.aspx.cs')
-rw-r--r-- | samples/OAuthConsumer/SampleWcf2.aspx.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/OAuthConsumer/SampleWcf2.aspx.cs b/samples/OAuthConsumer/SampleWcf2.aspx.cs index 244d542..b8eda9e 100644 --- a/samples/OAuthConsumer/SampleWcf2.aspx.cs +++ b/samples/OAuthConsumer/SampleWcf2.aspx.cs @@ -94,12 +94,12 @@ } } - private static WebAppClient CreateClient() { + private static WebServerClient CreateClient() { var authServerDescription = new AuthorizationServerDescription { TokenEndpoint = new Uri("http://localhost:65169/OAuth2.ashx/token"), AuthorizationEndpoint = new Uri("http://localhost:65169/OAuth2.ashx/auth"), }; - var client = new WebAppClient(authServerDescription) { + var client = new WebServerClient(authServerDescription) { ClientIdentifier = "sampleconsumer", ClientSecret = "samplesecret", TokenManager = TokenManager, |