summaryrefslogtreecommitdiffstats
path: root/samples/ServiceProvider/App_Code/Constants.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2008-10-23 19:52:59 -0700
committerAndrew <andrewarnott@gmail.com>2008-10-23 19:52:59 -0700
commit38c7d25878550429583558f5c907e34fb094fb68 (patch)
treec6edc9ee32d6d2031202040ac18cd2d288b3bb83 /samples/ServiceProvider/App_Code/Constants.cs
parent7ba9649126a7b802e348fbe210383fabc2898659 (diff)
downloadDotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.zip
DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.tar.gz
DotNetOpenAuth-38c7d25878550429583558f5c907e34fb094fb68.tar.bz2
Applied FxCop fixes.
Diffstat (limited to 'samples/ServiceProvider/App_Code/Constants.cs')
-rw-r--r--samples/ServiceProvider/App_Code/Constants.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/ServiceProvider/App_Code/Constants.cs b/samples/ServiceProvider/App_Code/Constants.cs
index 8ab6729..897834a 100644
--- a/samples/ServiceProvider/App_Code/Constants.cs
+++ b/samples/ServiceProvider/App_Code/Constants.cs
@@ -12,9 +12,9 @@ public static class Constants {
public static ServiceProviderDescription SelfDescription {
get {
ServiceProviderDescription description = new ServiceProviderDescription {
- AccessTokenEndpoint = new MessageReceivingEndpoint(new Uri(WebRootUrl, "/OAuth.ashx"), HttpDeliveryMethod.PostRequest),
- RequestTokenEndpoint = new MessageReceivingEndpoint(new Uri(WebRootUrl, "/OAuth.ashx"), HttpDeliveryMethod.PostRequest),
- UserAuthorizationEndpoint = new MessageReceivingEndpoint(new Uri(WebRootUrl, "/OAuth.ashx"), HttpDeliveryMethod.PostRequest),
+ AccessTokenEndpoint = new MessageReceivingEndpoint(new Uri(WebRootUrl, "/OAuth.ashx"), HttpDeliveryMethods.PostRequest),
+ RequestTokenEndpoint = new MessageReceivingEndpoint(new Uri(WebRootUrl, "/OAuth.ashx"), HttpDeliveryMethods.PostRequest),
+ UserAuthorizationEndpoint = new MessageReceivingEndpoint(new Uri(WebRootUrl, "/OAuth.ashx"), HttpDeliveryMethods.PostRequest),
TamperProtectionElements = new ITamperProtectionChannelBindingElement[] {
new HmacSha1SigningBindingElement(),
},