summaryrefslogtreecommitdiffstats
path: root/src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-18 19:55:50 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-18 19:55:50 -0700
commit2ddd19d9f037bebbbdc80d7de35ce4d899710859 (patch)
treebaf8ad19d4799b1a1284b9fc668afd53e3b008a4 /src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs
parentbd0de8217763d02759815b91588cd578becf496b (diff)
downloadDotNetOpenAuth-2ddd19d9f037bebbbdc80d7de35ce4d899710859.zip
DotNetOpenAuth-2ddd19d9f037bebbbdc80d7de35ce4d899710859.tar.gz
DotNetOpenAuth-2ddd19d9f037bebbbdc80d7de35ce4d899710859.tar.bz2
We have HTTP Basic client authentication working now in OAuth 2.
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs')
-rw-r--r--src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs b/src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs
new file mode 100644
index 0000000..a07e973
--- /dev/null
+++ b/src/DotNetOpenAuth.OAuth2/Configuration/OAuth2ResourceServerElement.cs
@@ -0,0 +1,20 @@
+//-----------------------------------------------------------------------
+// <copyright file="OAuth2ResourceServerElement.cs" company="Outercurve Foundation">
+// Copyright (c) Outercurve Foundation. All rights reserved.
+// </copyright>
+//-----------------------------------------------------------------------
+
+namespace DotNetOpenAuth.Configuration {
+ using System.Configuration;
+
+ /// <summary>
+ /// Represents the &lt;oauth2/resourceServer&gt; element in the host's .config file.
+ /// </summary>
+ internal class OAuth2ResourceServerElement : ConfigurationElement {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="OAuth2ResourceServerElement"/> class.
+ /// </summary>
+ internal OAuth2ResourceServerElement() {
+ }
+ }
+}