summaryrefslogtreecommitdiffstats
path: root/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-03-26 14:17:05 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2009-03-26 14:17:05 -0700
commit1bfeae7973d31f3e69a83793d95904abf4f653bc (patch)
tree50938143aae7a17001c68c99ffc3bcdb5bac6f1f /samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs
parent00f1f6baf79d6f42bcaaf24b1e43f3c86f540b2a (diff)
downloadDotNetOpenAuth-1bfeae7973d31f3e69a83793d95904abf4f653bc.zip
DotNetOpenAuth-1bfeae7973d31f3e69a83793d95904abf4f653bc.tar.gz
DotNetOpenAuth-1bfeae7973d31f3e69a83793d95904abf4f653bc.tar.bz2
Renamed OAuth sample sites.
Diffstat (limited to 'samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs')
-rw-r--r--samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs b/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs
deleted file mode 100644
index b33a734..0000000
--- a/samples/ServiceProvider/App_Code/RequestScopedTokenMessage.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using DotNetOpenAuth.Messaging;
-using DotNetOpenAuth.OAuth.Messages;
-
-/// <summary>
-/// A custom web app version of the message sent to request an unauthorized token.
-/// </summary>
-public class RequestScopedTokenMessage : UnauthorizedTokenRequest {
- /// <summary>
- /// Initializes a new instance of the <see cref="RequestScopedTokenMessage"/> class.
- /// </summary>
- /// <param name="endpoint">The endpoint that will receive the message.</param>
- public RequestScopedTokenMessage(MessageReceivingEndpoint endpoint) : base(endpoint) {
- }
-
- /// <summary>
- /// Gets or sets the scope of the access being requested.
- /// </summary>
- [MessagePart("scope", IsRequired = true)]
- public string Scope { get; set; }
-}